Operations related to authentication tokens
List of variant UUIDs to update
curl -i -X PUT \
https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/UpdateState \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"ID": [
"f7b3b3b3-4b1b-4b3b-8b3b-3b3b3b3b3b3b"
],
"State": "Pick"
}'
{ "Message": "Variant in park orders has been updated to Pick" }
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Summary?CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "Summary": [ { … } ] }
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/GroupByVariant?CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&State=NewOrder' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "Data": [ { … } ] }
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/GroupByOrder?CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&State=NewOrder' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "Data": [ { … } ] }
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Default?CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&State=NewOrder' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "Data": [ { … } ] }