Shops

GET/v1/shops

List all shops

This endpoint allows you to retrieve a list of all shops. Every order is associated to a shop.

Request

GET
/v1/shops
curl -G https://api.kaddy.cloud/v1/shops \
  -H "Authorization: Bearer {token}" \
  -H "X-Tenant: {tenant ID}"
  -H "Accept: application/json"

Response


[
  {
    "id": "1",
    "name": "Acme",
    "address": "Rue du Stade 20",
    "postal_code": "6500",
    "city": "Beaumont",
    "country": "BE"
  },
  {
    "id": "2"
    // ...
  }
]


Properties

  • Name
    id
    Type
    string
    Description

    The ID for the shop.

  • Name
    name
    Type
    string
    Description

    The name of the shop.

  • Name
    address
    Type
    string
    Description

    The address of the shop.

  • Name
    postal_code
    Type
    string
    Description

    The postal code of the shop.

  • Name
    city
    Type
    string
    Description

    The city of the shop.

  • Name
    country
    Type
    string
    Description

    The country of the shop.