How to authenticate

The Order API v2 uses OAuth2 for authentication. To get started, you'll need the provided Client ID and Client Secret.

  1. Obtain an Access Token
    Make a POST request to the token endpoint to retrieve an access token.

The response will contain an access token, which is valid for 30 minutes.

  1. Use the Access Token in API Requests
    Include the token in the Authorization header of your requests as follows:

Authorization: Bearer <access_token>