Operations related to authentication tokens
- List Invoices Return
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 Invoice With Total Count
Get List Invoice ID
Get List Invoice ID by Key Set
Get List Invoice By List ID
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 Invoices Return
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 List by Multiple Outlet with Total Count
Security
OAuth2_clientCredentials
One of:
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/MultipleOutlet/WithTotalCount
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Invoice/MultipleOutlet/WithTotalCount \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"From": "2020-08-01",
"To": "2020-09-30",
"PageNumber": 1,
"PageSize": 20,
"Outlet": [
"Outlet1",
"Outlet2"
],
"PaymentState": "Paid",
"DeliveryState": "Sent",
"Status": "Active"
}'Response
application/json
{ "Data": [ { … }, { … } ], "TotalCount": 100 }
Request
Also available as HTTP POST (endpoint: /api/v3/Invoice/p)
Get List of Invoices Return
Required Group Role: "Orders" - "View"
Security
OAuth2_clientCredentials
One of:
From Date. this is primary key for the object
Default "format : yyyy-mm-dd"
Example: "2018-09-07"
To Date. this is primary key for the object
Default "format: yyyy-mm-dd"
Example: "2018-10-17"
Outlet name. (Only for access outlet Read/Write that given to the user)
Example: "Outlet1"
Channel Tagging system. (ex:Offline / Whatsapp / Shopee / Tokopedia) used in marketplace.dealpos.app.
Example: ["Tokopedia","Shopee"]
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/Return
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Invoice/Return \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"From": "2018-09-07",
"To": "2018-10-17",
"PageNumber": 1,
"PageSize": 20,
"Outlet": "Outlet1",
"Tag": [
"Tokopedia",
"Shopee"
],
"Payment": "Paid",
"Fulfillment": "Sent",
"Email": "Hendry@dealpos.com",
"Mobile": "08112345"
}'Response
application/json
[ { "ID": "3de705c4-53a0-4a66-8ab1-f9737e3ad6fb", "Outlet": "Outlet1", "Number": "18.10.00009", "Customer": "Ferdi", "Date": "2018-10-17T00:00:00", "EventDate": "0001-01-01T00:00:00", "Due": "0001-01-01T00:00:00", "Amount": 120000, "Payment": "Paid", "Fulfillment": "Sent", "Created": "2019-08-28T11:00:20.34" }, { "ID": "3de7eve4-53a0-tsw6-8ab1-f9737e3adweb", "Outlet": "Outlet1", "Number": "18.10.00002", "Customer": "Ferdi", "Date": "2018-10-16T00:00:00", "EventDate": "0001-01-01T00:00:00", "Due": "0001-01-01T00:00:00", "Amount": 150000, "Payment": "Paid", "Fulfillment": "Sent", "Created": "2019-08-28T11:00:20.34" } ]
Request
Also available as HTTP POST with the same endpoints
List Invoices with Total Count
Required Group Role: "Orders" - "View"
Security
OAuth2_clientCredentials
- Production Serverhttps://subdomain.dealpos.net/api/v3/Invoice/WithTotalCount
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/Invoice/WithTotalCount?From=2018-09-07&To=2018-10-17&PageNumber=1&PageSize=20&Outlet=Outlet1&OutletID=0d46700d-35a3-4fb5-9b3a-644c370b5af1' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "Data": [ { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … }, { … } ], "TotalCount": 14 }