Skip to main content
POST
Issue OAuth2/JWT access token
Issue OAuth2/JWT access token using client credentials or password grant flow.

Reference Documentation

For more information on authentication flows, please refer to:

Authorizations

Authorization
string
header
required

Body

application/json
grantType
enum<string>
Available options:
client_credentials,
password
Example:

"client_credentials"

clientId
string
Example:

"your-client-id"

clientSecret
string
Example:

"your-client-secret"

username
string
Example:

"user@example.com"

password
string
Example:

"password"

Response

Token issued successfully

accessToken
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

tokenType
string
Example:

"Bearer"

expiresIn
integer
Example:

3600