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/Serial
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://subdomain.dealpos.net/api/v3/Serial \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"PageNumber": 1,
"PageSize": 20,
"ListOutlet": [
"Outlet1",
"Outlet2"
]
}'Response
application/json
[ { "Name": "Iphone1", "Code": "IP1", "Serial": [ … ] }, { "Name": "Iphone2", "Code": "IP2", "Serial": [ … ] } ]
- Production Serverhttps://subdomain.dealpos.net/api/v3/Serial/byVariantCode
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://subdomain.dealpos.net/api/v3/Serial/byVariantCode?Outlet=MK&Code=SM-001' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"Outlet": "MK",
"Code": "SM-001"
}'Response
application/json
[ { "Outlet": "MK", "Serial": [ … ] } ]