Skip to main content
GET
/
api
/
v1
/
instore-queues
cURL
curl --request GET \
  --url https://api-staging.getmeadow.com/api/v1/instore-queues \
  --header 'X-Client-Key: <api-key>' \
  --header 'X-Consumer-Key: <api-key>'
{
  "intake": {
    "id": 123,
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "phone": "<string>",
    "hashId": "<string>",
    "birthday": "<string>",
    "isFirstTime": true
  },
  "pos": {
    "id": 123,
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "phone": "<string>",
    "hashId": "<string>",
    "birthday": "<string>",
    "isFirstTime": true
  }
}
There are two queues used in the waiting rooms: Intake Queue The intake queue is used to track which customers are currently waiting at intake, the front desk, or a waiting room, generally prior to being admitted to the shop floor where the POS stations are located. It also shows the intake station if the customer has a pending order, for example a pickup, in case there are special instructions for such customers. POS Queue The POS queue is used to track which customers are currently waiting in the shop floor where the POS stations are located. Any user with a POS station can view and select customers from the queue to start a new order or (following a prompt) process any existing order, for example a pickup.

Authorizations

X-Consumer-Key
string
header
required

The key assigned to your company and provided via Meadow

X-Client-Key
string
header
required

The key generated and provided by our mutual client

Response

Instore queue response

intake
object
pos
object