Operations related to authentication tokens
DealPOS API (3.1.0)
List of variant GUIDs to update
New state ID to set for the variants (0=New, 1=Pick, 2=Pack, 3=Ship)
- Production Serverhttps://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/UpdateState
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
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"
],
"StateID": 1,
"ShipToFulfill": true
}'{ "Message": "Variant in park orders has been updated to Pick" }
- Production Serverhttps://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Summary/Default
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Summary/Default?OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "Summary": [ { … }, { … }, { … }, { … } ] }
- Production Serverhttps://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Summary/GroupByOrder
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Summary/GroupByOrder?OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "Summary": [ { … }, { … }, { … }, { … } ] }
- Production Serverhttps://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Summary/GroupByVariant
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Summary/GroupByVariant?OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "Summary": [ { … }, { … }, { … }, { … } ] }
Unique identifier for the outlet.
Unique identifier for the category.
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
- Production Serverhttps://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/GroupByVariant
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/GroupByVariant?OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&StateID=0&PageNumber=1&PageSize=20&MaxHours=24&OrderType=Parked&Sort=Desc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "Data": [ { … } ] }
Unique identifier for the outlet.
Unique identifier for the category.
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
- Production Serverhttps://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/GroupByOrder
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/GroupByOrder?OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&StateID=0&PageNumber=1&PageSize=20&MaxHours=24&OrderType=Parked&Sort=Desc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "Data": [ { … } ] }
Unique identifier for the outlet.
Unique identifier for the category.
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
- Production Serverhttps://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Default
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/ParkedOrderDisplay/Default?OutletID=ff3c515e-c2b7-4309-8c29-30e44cecb23f&CategoryID=ba003c7a-b7ed-410d-8c0d-af32ef08443f&StateID=0&PageNumber=1&PageSize=20&MaxHours=24&OrderType=Parked&Sort=Desc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "Data": [ { … } ] }