GET
/
api
/
brand
/
v1
/
facility
/
{facility_id}
Get Brands
curl --request GET \
  --url https://api.retailreadyai.com/api/brand/v1/facility/{facility_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "brand_id": "a7e92c51-4b8c-42d9-95e8-fb16c89a7432",
      "name": "Acme Outdoor",
      "external_brand_code": "12G79"
    },
    {
      "brand_id": "d2f61c39-5e7a-4b84-9c31-8d07a5e32b46",
      "name": "NorthStar Athletics",
      "external_brand_code": null
    }
  ],
  "message": "Brand info retrieved successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Successfully retrieved brands

The response is of type object.