Operations related to authentication tokens
- Send Receipt By Email
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
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
Get Reference Number By Invoice ID
Update Note in Invoice
Send Receipt By Email
DealPOS API (3.1.0)
Download OpenAPI description
Overview
URL
Customer Support
Languages
Servers
Production Server
https://{subdomain}/api/v3/
Request
Also available as HTTP POST with the same endpoint
Get Invoice ID by Number to check that available in POS
Required Group Role: "Orders" - "View"
Security
OAuth2_clientCredentials
Query
Bodyapplication/jsonOutlet ID (Guid). If not provided, it will use property OutletName
Example: OutletID=aad4a789-b802-49c1-b66f-f45fbc7ce17f
Outlet Name. If not provided, it will use property OutletID
Example: Outlet=Outlet1
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/IDByNumber
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/Invoice/IDByNumber?OutletID=aad4a789-b802-49c1-b66f-f45fbc7ce17f&Outlet=Outlet1&Number=18.10.00009' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Outlet1",
"Number": "18.10.00009"
}'Response
application/json
{ "ID": "aad4a789-b802-49c1-b66f-f45fbc7ce17f" }
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/SendReceiptByEmail
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://subdomain.dealpos.net/api/v3/Invoice/SendReceiptByEmail \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Outlet1",
"Number": "18.10.00009",
"Email": "ezzan212@dealpos.com"
}'Response
application/json
{ "Message": "Sent to email success" }
Request
Count total invoice with multiple outlet
Also available as HTTP POST with the same endpoint
Security
OAuth2_clientCredentials
One of:
Channel Tagging system. (ex: Tokopedia, Shopee)
Example: ["Tokopedia","Shopee"]
Payment status / progress of the invoice
Enum"Paid""Partial""Unpaid"
Example: "Paid"
Delivery status / progres of the invoice
Enum"Sent""Unsent""Partial""Returned"
Example: "Sent"
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/GetCountMultipleOutlet
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Invoice/GetCountMultipleOutlet \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"From": "2022-09-01",
"To": "2022-09-06",
"Outlet": [
"Outlet1",
"Outlet2"
],
"Tag": [
"Tokopedia",
"Shopee"
],
"PaymentState": "Paid",
"Fulfillment": "Sent",
"Bin": false
}'