Operations related to authentication tokens
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/Payment/SupplierBill
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://subdomain.dealpos.net/api/v3/Payment/SupplierBill \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Outlet1",
"Number": "20.04.00019",
"Payments": [
{
"Date": "2021-04-01T00:00:00",
"Amount": 1000000,
"Method": "Cash",
"Note": "Payment for Invoice Number 20.04.00019"
}
]
}'Response
application/json
{ "Message": "Invoice Number 20.04.00019 has successfully completed a Paid" }
- Production Serverhttps://subdomain.dealpos.net/api/v3/Payment/SupplierBill
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://subdomain.dealpos.net/api/v3/Payment/SupplierBill \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "Outlet1",
"Number": "21.10.00001"
}'