How to authenticate
The Order API v2 uses OAuth2 for authentication. To get started, you'll need the provided Client ID and Client Secret.
- Obtain an Access Token Make a POST request to the token endpoint to retrieve an access token.
- PRE (Pre-production): https://presso.cycleon.net/auth/realms/master/protocol/openid-connect/token
- PRD (Production): https://sso.cycleon.net/auth/realms/master/protocol/openid-connect/token
The response will contain an access token, which is valid for 30 minutes.
- Use the Access Token in API Requests Include the token in the Authorization header of your requests as follows:
Authorization: Bearer <access_token>
Updated 21 days ago