GetKitchenQueues
This call is to retrieve an array of KitchenQueue objects for the location.
Response Parameters
- Id
int— Unique Id of this KitchenQueue - Name
string— Name of this KitchenQueue
Headers
- Type: stringS
O A P Action required
Body
required
application/json
SOAP envelope for GetKitchenQueues request. No parameters required.
Responses
- text/xml; charset=utf-8
Request Example for post/GetKitchenQueues
cURL
curl --request POST \
--url 'https://{server_name_goes_here}.parpos.com/Settings2.svc?GetKitchenQueues' \
--header 'Content-Type: text/xml; charset=utf-8' \
--header 'AccessToken: your-access-token' \
--header 'LocationToken: your-location-token' \
--header 'SOAPAction: "http://www.brinksoftware.com/webservices/settings/v2/ISettingsWebService2/GetKitchenQueues"' \
--data '<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:v2="http://www.brinksoftware.com/webservices/settings/v2">
<soapenv:Header/>
<soapenv:Body>
<v2:GetKitchenQueues/>
</soapenv:Body>
</soapenv:Envelope>'
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetKitchenQueuesResponse xmlns="http://www.brinksoftware.com/webservices/settings/v2">
<GetKitchenQueuesResult>
<Message>Success</Message>
<ResultCode>0</ResultCode>
<KitchenQueues>
<KitchenQueue>
<Id>1</Id>
<Name>Grill</Name>
</KitchenQueue>
</KitchenQueues>
</GetKitchenQueuesResult>
</GetKitchenQueuesResponse>
</s:Body>
</s:Envelope>