Operations related to authentication tokens
/
Create InboundLogistic
DealPOS API (3.1.0)
Download OpenAPI description
Overview
URL
Customer Support
Languages
Servers
Production Server
https://{subdomain}/
- Production Serverhttps://subdomain.dealpos.net/api/v3/InboundLogistic
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/InboundLogistic?From=2024-02-01&To=2024-02-28&PageNumber=1&PageSize=20&Outlet=Outlet1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
[ { "Outlet": "Outlet1", "Number": "20.04.00082", "Supplier": "Stephen", "PONumber": "20.04.00082", "Date": "2024-02-20T15:01:00" }, { "Outlet": "Outlet1", "Number": "20.04.00081", "Supplier": "Stephen", "PONumber": "20.04.00081", "Date": "2024-02-18T14:30:00" } ]
- Production Serverhttps://subdomain.dealpos.net/api/v3/InboundLogistic
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://subdomain.dealpos.net/api/v3/InboundLogistic \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Outlet1",
"Number": "21.05.00007",
"FulfillmentOutlet": "Outlet1"
}'Response
application/json
{ "ID": "712098c6-0703-4e36-9679-c14dbeb4e3fe", "OrderFulfillmentState": "Received" }
- Production Serverhttps://subdomain.dealpos.net/api/v3/InboundLogistic
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://subdomain.dealpos.net/api/v3/InboundLogistic \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Outlet1",
"Number": "21.12.00123"
}'Response
application/json
{ "Message": "Inbound Logistic number 21.12.00123 has been deleted!" }
- Production Serverhttps://subdomain.dealpos.net/api/v3/InboundLogistic/BillID
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/InboundLogistic/BillID?ID=bcb2fff2-916a-4f60-9e12-36735d0790a9' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "Data": [ { … }, { … } ] }
- Production Serverhttps://subdomain.dealpos.net/api/v3/InboundLogistic/Number
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/InboundLogistic/Number?Outlet=Outlet1&Number=24.02.00018' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "Outlet": "Outlet1", "Number": "24.04.00018", "Date": "2024-04-29T00:00:00", "Supplier": {}, "CreatorID": "ff7848c9-21f1-4c05-ac9e-1e71d829cc9c", "Created": "2024-04-29T12:02:26.903", "Variants": [ { … } ] }
- Production Serverhttps://subdomain.dealpos.net/api/v3/InboundLogistic/byOrderNumber
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/InboundLogistic/byOrderNumber?Number=24.02.00012&Outlet=Outlet1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
[ { "Outlet": "Outlet3", "Number": "SB.TNG.24.01.0012", "Date": "2024-01-21T00:00:00", "Created": "2024-01-21T09:37:53.937" }, { "Outlet": "Outlet2", "Number": "SB.TNG.24.01.0012_2", "Date": "2024-01-21T00:00:00", "Created": "2024-01-21T09:38:05.857" } ]
- Production Serverhttps://subdomain.dealpos.net/api/v3/InboundLogistic/WithTotalCount
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/InboundLogistic/WithTotalCount?From=2024-01-17&To=2024-01-30&PageNumber=1&PageSize=20&Outlet=Outlet1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "Data": [ { … }, { … } ], "TotalCount": 100 }