application/x-www-form-urlencoded, containing the necessary authentication parameters.200 OK status with a Content-Type of application/json. The response body will contain the access token, its expiration duration, and the token type.{
"access_token": "JTW.Token...",
"expires_in": 3600,
"token_type": "Bearer"
}
```Get access token using client credentialscurl --location --request POST '/oauth2/token' \
--data-urlencode 'client_id={{your_clientid}}' \
--data-urlencode 'client_secret={{your_secretid}}' \
--data-urlencode 'grant_type=client_credentials'{}