GET
/
api
/
retailer
/
v1
/
facility
/
{facility_id}
?brand_id=
{brand_id}
Get Retailers
curl --request GET \
  --url 'https://api.retailreadyai.com/api/retailer/v1/facility/{facility_id}?brand_id={brand_id}' \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "retailer_id": "7eab3720-1944-4b01-aea6-972492f017e5",
      "name": "Target"
    },
    {
      "retailer_id": "1c0bd477-5013-4db8-bc00-9c3a6c65a4da",
      "name": "CVS"
    }
  ],
  "message": "Retailer 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

Retailers retrieved successfully

The response is of type object.