Operations related to authentication tokens
List of variant GUIDs 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 '{
"ListID": [
"f7b3b3b3-4b1b-4b3b-8b3b-3b3b3b3b3b3b",
"abcwb4b6-8gh9-xyu3-poi8-yt4b3b3b3b4b"
],
"State": "Pick",
"ShipToFulfill": true
}'
{ "Message": "Variant in park orders has been updated to Pick" }
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Summary/Default?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/Summary/GroupByOrder?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/Summary/GroupByVariant?CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "Summary": [ { … }, { … }, { … }, { … } ] }
Unique identifier for the outlet.
Unique identifier for the category.
Order state filter (New, Pick, Pack, Ship).
Maximum hours to filter parked orders. (If not provided, default is 24 hours)
Type of order will be shown in the display. (Parked / All). If not provided, default is "Parked".
Parked => Only for Invoice Pending
All => Display all pending and processed invoices
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/GroupByVariant?CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&MaxHours=24&OrderType=Parked&OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&PageNumber=1&PageSize=20&Sort=Desc&State=New' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "Data": [ { … } ], "TotalCount": 88 }
Unique identifier for the outlet.
Unique identifier for the category.
Order state filter (New, Pick, Pack, Ship).
Maximum hours to filter parked orders. (If not provided, default is 24 hours)
Type of order will be shown in the display. (Parked / All). If not provided, default is "Parked".
Parked => Only for Invoice Pending
All => Display all pending and processed invoices
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/GroupByOrder?CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&MaxHours=24&OrderType=Parked&OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&PageNumber=1&PageSize=20&Sort=Desc&State=New' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "Data": [ { … } ], "TotalCount": 88 }
Unique identifier for the outlet.
Unique identifier for the category.
Order state filter (New, Pick, Pack, Ship).
Maximum hours to filter parked orders. (If not provided, default is 24 hours)
Type of order will be shown in the display. (Parked / All). If not provided, default is "Parked".
Parked => Only for Invoice Pending
All => Display all pending and processed invoices
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Default?CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&MaxHours=24&OrderType=Parked&OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&PageNumber=1&PageSize=20&Sort=Desc&State=New' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "Data": [ { … } ], "TotalCount": 10 }