GET /accounts/{accountId}/brands

This endpoint provides the existing brands of an account. Brands represent the grouping of a particular offering from a customer, typically a menu concept or otherwise unique aspect. These brands are then individually present on ordering platforms. They could be a range of ghost kitchens, for example

Path parameters

  • accountId string Required

Responses

  • default application/json

    default

GET /accounts/{accountId}/brands
curl \
 --request GET 'https://api.staging.deliverect.com/accounts/{accountId}/brands' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (default)
[
  {
    "brands": [
      {
        "name": "Brand 1",
        "brandId": "601bd819bfc52ecea142bf9f"
      },
      {
        "name": "Brand 2",
        "brandId": "602131b4639578ac0da4588d"
      },
      {
        "name": "Brand 3",
        "brandId": "602cecade10d4dc9fe0f7fdc"
      }
    ]
  }
]