Operations related to authentication tokens
- List Invoice Multiple Outlet
Create an Invoice
Update an Invoice
Delete an Invoice
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
Get Reference Number By Invoice ID
Update Note in Invoice
List Invoice Multiple Out...
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
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://subdomain.dealpos.net/api/v3/Invoice \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Outlet1",
"Number": "LM3002"
}'Response
application/json
"Invoice has been delete!{}"
Request
Also available as HTTP POST with the same endpoint
Get Invoice List by Multiple Outlet
Security
OAuth2_clientCredentials
One of:
Outlet name. When Outlet is not specified, it will return all outlet that the user has access to.
Example: ["Outlet1","Outlet2"]
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"
Filter Orders By their status (Active, Cancelled, Any.)
Default "Active"
Enum"Active""Cancelled""Any"
Example: "Active"
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/MultipleOutlet
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Invoice/MultipleOutlet \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"PageNumber": 1,
"PageSize": 20,
"From": "2024-08-27",
"To": "2024-08-28",
"Outlet": [
"Outlet1",
"Outlet2"
],
"Tag": [
"Tokopedia",
"Shopee"
],
"PaymentState": "Paid",
"Fulfillment": "Sent",
"Email": "johndoe@email.com",
"Mobile": "08112345",
"Status": "Active",
"Note": "Invoice Note",
"ReferenceNumberType": "All"
}'Response
application/json
[ { "ID": "3c76f9b5-d1b8-4159-85a0-0630ac0caa47", "Outlet": "Outlet1", "Number": "20.08.00009", "Customer": "John", "Date": "2020-08-17T00:00:00", "Due": "0001-01-01T00:00:00", "Amount": 120000, "Payment": "Paid", "Fulfillment": "Sent", "Created": "2020-08-28T11:00:20.34", "Tag": "Tokopedia", "ReferenceNumber": "TKPD-001" }, { "ID": "3076b3af-1773-4bf9-9073-279be7b76327", "Outlet": "Outlet2", "Number": "20.09.00002", "Customer": "John", "Date": "2020-09-16T00:00:00", "Due": "0001-01-01T00:00:00", "Amount": 150000, "Payment": "Paid", "Fulfillment": "Sent", "Created": "2020-09-28T11:00:20.34", "Tag": "Shopee", "ReferenceNumber": "SHPD-002" } ]
Bodyapplication/json
One of:
Outlet name. When Outlet is not specified, it will return all outlet that the user has access to.
Example: ["Outlet1","Outlet2"]
Channel Tagging system.(ex: Tokopedia, Shopee)
Example: ["Tokopedia","Shopee"]
Payment status / progress of the invoice
Enum"Paid""Partial""Unpaid"
Example: "Paid"
Filter Orders By their status (Active, Cancelled, Any.)
Default "Active"
Enum"Active""Cancelled""Any"
Example: "Active"
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/MultipleOutlet/WithVariant
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Invoice/MultipleOutlet/WithVariant \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"PageNumber": 1,
"PageSize": 20,
"Outlet": [
"Outlet1",
"Outlet2"
],
"Tag": [
"Tokopedia",
"Shopee"
],
"PaymentState": "Paid",
"Fulfillment": "Sent",
"Email": "johndoe@email.com",
"Mobile": "08112345",
"Status": "Active",
"Note": "Invoice Note",
"ReferenceNumberType": "All"
}'Response
application/json
[ { "ID": "3c76f9b5-d1b8-4159-85a0-0630ac0caa47", "Outlet": "Outlet1", "Number": "20.08.00009", "Customer": "John", "Date": "2020-08-17T00:00:00", "Due": "0001-01-01T00:00:00", "Amount": 120000, "Payment": "Paid", "Fulfillment": "Sent", "Created": "2020-08-28T11:00:20.34", "Tag": "Tokopedia", "Variants": [ … ], "LogisticService": [ … ], "ReferenceNumber": "TRK123456789" }, { "ID": "3076b3af-1773-4bf9-9073-279be7b76327", "Outlet": "Outlet2", "Number": "20.09.00002", "Customer": "John", "Date": "2020-09-16T00:00:00", "Due": "0001-01-01T00:00:00", "Amount": 150000, "Payment": "Paid", "Fulfillment": "Sent", "Created": "2020-09-28T11:00:20.34", "Tag": "Shopee", "Variants": [ … ], "LogisticService": [ … ], "ReferenceNumber": "TRK987654321" } ]