Skip to main content
All CollectionsDeveloper APIs
Check Item Status API
Check Item Status API

This API allows users to check the current status of a specific menu item.

Updated over a year ago

Overview

This API allows users to check the current status of a specific menu item. The status of an item can be either "available" or "unavailable".

Request

Endpoint:

/v1/check-item-status

Method:

GET

Headers:

Authorization: <Your-API-Key>

When forming your request, include a JSON payload with the specific item_id you're interested in:

{
"item_id": "your_item_id"
}

Replace your_item_id with the actual ID of the collection you're inquiring about.

Response

The response will indicate the status of the item.

Example Request Body

{
"item_id": "988ed94365aa4a74c30cd832"
}

Expected Response

{ 
"item_id": "your_item_id",
"status": "unavailable"
}

If an item is currently unavailable or if it's been temporarily removed from the menu (often referred to as "86'd"), the status will be marked as "unavailable."

Did this answer your question?