Skip to main content
POST
/
auth
/
v1
/
oauth2
/
token
Request `access_token` for API access.
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.

client_id
string
required

The client_id value provided by your Account Manager.

client_secret
string
required

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).

Response

Authorized Response

data
object
required