Skip to main content
Login For Token
curl --request POST \
  --url https://{api_endpoint}/api/v1/auth/token \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'grant_type=<string>' \
  --data 'username=<string>' \
  --data 'password=<string>' \
  --data scope= \
  --data 'client_id=<string>' \
  --data 'client_secret=<string>'
{
  "access_token": "<string>",
  "token_type": "<string>"
}

Query Parameters

tenant_id
string

Body

application/x-www-form-urlencoded
username
string
required
password
string<password>
required
grant_type
string | null
scope
string
default:""
client_id
string | null
client_secret
string<password> | null

Response

Successful Response

access_token
string
required
token_type
string
required