Operations related to authentication tokens
DealPOS API (3.1.0)
Download OpenAPI description
Overview
URL
Customer Support
Languages
Servers
Production Server
https://{subdomain}/api/v3/
- Production Serverhttps://subdomain.dealpos.net/api/v3/Barcode/ByBillNumber
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Barcode/ByBillNumber \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Pluit",
"Number": "2023.09.00001"
}'Response
application/json
[ { "VariantID": "6f96d108-1af5-45de-a593-74719a0ee8e2", "Name": "Cardigan (L)", "Code": "1315L", "Quantity": 10, "UnitPrice": 280000 }, { "VariantID": "bb5fd4fc-e7fb-4e99-92f4-b3caac23c183", "Name": "Boots (36)", "Code": "200536", "Quantity": 15, "UnitPrice": 540000 }, { "VariantID": "f4adff17-6e0c-499d-af3f-db8c16e62375", "Name": "Cardigan (XL)", "Code": "1315XL", "Quantity": 20, "UnitPrice": 280000 } ]
- Production Serverhttps://subdomain.dealpos.net/api/v3/Barcode/ByOutletDeliveryNumber
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Barcode/ByOutletDeliveryNumber \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Pluit",
"Number": "2023.09.00001"
}'Response
application/json
[ { "VariantID": "6f96d108-1af5-45de-a593-74719a0ee8e2", "Name": "Cardigan (L)", "Code": "1315L", "Quantity": 10, "UnitPrice": 280000 }, { "VariantID": "bb5fd4fc-e7fb-4e99-92f4-b3caac23c183", "Name": "Boots (36)", "Code": "200536", "Quantity": 15, "UnitPrice": 540000 } ]