Operations related to authentication tokens
- Get Reference Number By Invoice ID
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
List Join Invoice with Total Count
Join Invoice Detail
Update Note in Invoice
Get Reference Number By I...
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/Invoice/Join/Detail/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Invoice/Join/Detail/d4a2b6ea-bf51-4e14-9d82-685aed1b2936 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "ID": "d4a2b6ea-bf51-4e14-9d82-685aed1b2936", "OutletID": "62844da2-47c8-43d1-b3f1-dfa5c014c872", "Outlet": "Outlet1", "Number": "JI.25.04.00001", "Date": "2020-08-17T00:00:00Z", "Customer": "Ferdian", "CreatorID": "abc2b688-cd78-8118-9064-6123aed1b1234", "Invoice": [ { … } ], "Payment": [ { … } ] }
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/GetReferenceNumber
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Invoice/GetReferenceNumber \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"ListID": [
"1e9c45af-9916-4131-a138-01ffd0ec1eba",
"0b9657f4-5e12-4d4a-89d6-c104a55c6c49"
]
}'Response
application/json
[ { "ID": "1e9c45af-9916-4131-a138-01ffd0ec1eba", "ReferenceNumber": "TKPD-001" }, { "ID": "0b9657f4-5e12-4d4a-89d6-c104a55c6c49", "ReferenceNumber": "TKPD-002" } ]
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/Note
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://subdomain.dealpos.net/api/v3/Invoice/Note \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Outlet1",
"Number": "2020.06.00005",
"Note": "Invoice Note"
}'Response
application/json
{ "Message": "Invoice note has been Updated!" }