cURL
curl --request POST \ --url https://sandbox-api.sandbox.lemmax.com/auth/v1/oauth2/token \ --header 'Content-Type: application/json' \ --data ' { "client_id": "<your_client_id>", "client_secret": "<your_client_secret>" } '
{ "data": { "access_token": "<your_access_token>", "expires_in": 3600, "token_type": "Bearer" } }
Use your client_id and client_secret to request an access token to authorize your API requests.
client_id
client_secret
Provide the Client Credentials linked above.
The client_id value provided by your Account Manager.
The client_secret value provided by your Account Manager. Please make sure that this value is stored securely in your system, and not exposed to the Front End(s).
Authorized Response
Show child attributes