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 body is of type object.
object
Authorized Response
The response is of type object.