Skip to main content
GET
/
v1
/
retailers
/
{id}
Get retailer
curl --request GET \
  --url http://localhost:3000/v1/retailers/{id}
{
  "retailer": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "retailer_code": "<string>",
    "display_name": "<string>",
    "brand_logo_url": "<string>"
  },
  "locations": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "retailer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "store_number": "<string>",
      "address_1": "<string>",
      "address_2": "<string>",
      "city": "<string>",
      "province": "<string>",
      "postal_code": "<string>",
      "latitude": 123,
      "longitude": 123,
      "product_count": 123
    }
  ]
}

Path Parameters

id
string<uuid>
required

Retailer UUID

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Retailer with locations

Get retailer response

retailer
object
required
locations
object[]
required