Run in Apidog
Generate Access token for all other Kobble APIs Tokens are issued by the environment's Cognito host (e.g. https://cognito.dev.apikobble.net/oauth2/token), NOT by the API host.
Request Body Params application/x-www-form-urlencoded
Request Code Samples
curl --location '/oauth2/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id={{client_id}}' \
--data-urlencode 'scope=administrator/write' \
--data-urlencode 'client_secret={{client_secret}}' Responses application/json
Generate Code
{
"access_token" : "eyJraWQiOiJFWEFNUExFIn0.eyJzdWIiOiJleGFtcGxlIn0.EXAMPLE-SIGNATURE" ,
"expires_in" : 3600 ,
"token_type" : "Bearer"
} Modified at 2026-08-05 04:06:11