Authentication
Retrieve an access token using client credentials.
Authorizations
Body
grant_typestringRequired
The type of grant request (e.g., 'client_credentials').
client_idstringRequired
The client identifier issued to the client.
Responses
200
Access token successfully obtained.
application/json
access_tokenstringOptional
The access token issued by the authorization server.
token_typestringOptional
The type of the token issued (typically 'Bearer').
expires_ininteger · int32Optional
The lifetime in seconds of the access token.
400
Invalid request parameters.
401
Unauthorized - Invalid client credentials.
post
/v1/oauth/tokenLast updated