v1

latestOpenAPI 3.0.02026-07-1498671635.3 KB
Restaurants
publicly-accessible

Get all category item IDs

Get all item IDs which are assigned to the specified category

get/restaurants/{tenant}/{restaurantId}/catalogue/categories/{categoryId}/items

Path parameters

tenantstring required

Request tenant.

restaurantIdstring required

The restaurant ID.

categoryIdstring required

The category ID.

Query parameters

limitinteger required

The maximum number of item IDs to fetch.

afterstring

Value representing a cursor - position to use when retrieving the next page of data. If provided, the value of this parameter must be URL encoded.

Response

Request succeeded.

itemIdsstring[]

List of item IDs which are assigned to the specified category

Example response

{
  "itemIds": [
    "65143901",
    "65143902",
    "65143903",
    "65143904",
    "65143905"
  ],
  "paging": {
    "cursors": {
      "after": "NDMyNzQyODI3OTQw"
    }
  }
}