Include the following headers in every request. They ensure only authorized users access the correct resources.
Authorization β Bearer Token#
Bearer Authentication (also known as Token Authentication) is required to access protected API endpoints that are not open to the public.
How it works#
The server reads the token from the Authorization header.
It verifies the userβs permission to access the requested resource.
If the token is valid, the request will be processed; otherwise, access will be denied.
Important Security Notice#
An access token does not grant universal access.
Each token only permits access to resources that belong to the authenticated user.
Any attempt to access unauthorized resources will be rejected.
Keep your token valid and refresh it when needed.
X-Partner-ID β Partner Identification#
Every API partner must include a Partner ID in each request.
The Partner uniquely links your system to the API service.
Without it, the API cannot identify the requesting partner and your request will be rejected.
Contact the official API support team to obtain a registered Partner ID.
Ensure this header is included in every API request to avoid any issues!
Final Checklist#
Every API request must include:Authorization β A valid access token.
X-Partner-ID β A registered partner identifier.
Requests missing these headers will be rejected by the server Modified atΒ 2025-08-28 01:40:45