Operations related to authentication tokens
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"
}'
[ { "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 } ]
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"
}'
[ { "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 } ]