Overview
Connectivity, Sandbox and Production
API request basics
Content-Type: application/json
Accept: application/json
Authorization: Bearer <access_token> # for authenticated requestsNoxxo provides pay-out solutions that are customized to the partner’s specific business needs. To partner with Noxxo, you are required to complete onboarding requirements: MOU, NDA, KYB together with the Due Diligence form and a commercial agreement with Noxxo.
As part of the onboarding process, you will be provided access to the Web API to set up a partner account and obtain an API Key. Initially the API key will be for the sandbox (test) environment. Once you have completed integration and it has been approved by our integration team, they will issue an API key for the Production environment.
All API requests must be made over HTTPS. Calls over plain HTTP will fail.
API calls are standard HTTPS requests.
Initial API requests for onboarding (for example, requests to generateToken) are without authentication.
All remaining requests must be authenticated using an access token.
All request and response bodies should be JSON and include the appropriate header:
Content-Type: application/json
Accept: application/json
Authorization: Bearer <access_token> # for authenticated requestsIf an error is returned, the response body is a JSON object.
To make a Web API call from a client (for example, a web application), you must supply an access token with the call.
The token acts like an electronic key that lets you access the API.
Token validity: 1 hour.
For both sandbox and production environments, you will have access to the Dashboard and an overview of orders.
For more information, see the integration and API reference in the rest of the documentation.