Query parameters

  • accountId string Required

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • brands array[object]
      Hide brands attributes Show brands attributes object
      • name string
      • brandId string
  • 400 application/json

    Bad Request

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