POST
/
auth
/
v1
/
oauth2
/
token
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"
  }
}

Client Credentials

Body

application/json

Provide the Client Credentials linked above.

The body is of type object.

Response

201
application/json

Authorized Response

The response is of type object.