Returns the configuration for every prep station that has been created for the specified restaurant. A prep station represents the location of a kitchen printer or KDS device that receives orders for fulfillment. You can use optional query parameters to paginate the results. If a lastModified
date is specified, returns all objects that were created or modified after that date.
Related topics:
Routing to prep stations
lastModified | string <date> Limits the return data to objects created or modified after a specific date and time. For example: |
pageToken | string A string that identifies the set of data objects that the
endpoint will return in its response data. You can use this
parameter to control the pagination of response data. You
get the value that you supply in the |
Returns an array of PrepStation
objects. A prep station represents the location of a kitchen printer or KDS device that receives orders for fulfillment.
Related topics:
Routing to prep stations
curl -i -X GET \ 'https://toast-api-server/kitchen/v1/published/prepStations?lastModified=2019-08-24&pageToken=string' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Toast-Restaurant-External-ID: string'
[- {
- "guid": "string",
- "entityType": "string",
- "connectedPrepStations": [
- {
- "guid": "string",
- "entityType": "string"
}
], - "printingMode": "ON",
- "includeWithExpediter": true,
- "name": "string",
- "kitchenPrinter": {
- "guid": "string",
- "entityType": "string"
}
}
]