Request an access token
POST/oauth/token
Obtain an OAuth2 access token using client credentials
Request
- application/json
Body
required
client_id stringrequired
The client ID of the application
client_secret stringrequired
The client secret of the application
grant_type required
Responses
- 200
Successful response
- application/json
- Schema
- Example (from schema)
Schema
access_token stringrequired
token_type stringrequired
expires_in integerrequired
{
"access_token": "string",
"token_type": "string",
"expires_in": 0
}
Loading...