Operations related to authentication tokens
- List Join Invoice
Create an Invoice
Update an Invoice
Delete an Invoice
List Invoice Multiple Outlet
List Invoice Multiple Outlet With Variant
List Invoice Multiple Outlet With Total Count
List Invoices Return
List Invoice With Total Count
Create Multiple Invoice
Get Invoice By Number
Get Invoice By ID
Get Invoice ID By Number
Send Receipt By Email
Invoice Count
List Invoice by Number
List Invoice Multiple Outlet and Payment
Void Invoice
Restore Invoice
Erase Invoice
List Join Invoice with Total Count
Join Invoice Detail
Get Reference Number By Invoice ID
Update Note in Invoice
List Join Invoice
DealPOS API (3.1.0)
Download OpenAPI description
Overview
URL
Customer Support
Languages
Servers
Production Server
https://{subdomain}/api/v3/
Bodyapplication/json
Request can be send with payload Outlet+Number / OutletID + Number /InvoiceID only
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/Erase
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://subdomain.dealpos.net/api/v3/Invoice/Erase \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Offline",
"Number": "B1.22.08.00003"
}'Response
application/json
{ "Message": "Invoice has been Erased!" }
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/Join
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/Invoice/Join?PageNumber=1&PageSize=20&Outlet=Outlet1&From=2020-08-01T00%3A00%3A00Z&To=2020-08-31T23%3A59%3A59Z&CustomerID=d4a2b6ea-bf51-4e14-9d82-685aed1b2936&Number=JI.25.04.00001&PaymentState=Paid' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "Data": [ { … } ] }
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/Join/TotalCount
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/Invoice/Join/TotalCount?PageNumber=1&PageSize=20&Outlet=Outlet1&From=2020-08-01T00%3A00%3A00Z&To=2020-08-31T23%3A59%3A59Z' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "Data": [ { … } ], "TotalCount": 88 }