client_id and client_secret for a Bearer token.curl --location '/connect/token' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'client_id=<Your-Client-Id>' \
--data-urlencode 'client_secret=<Your-Client-Secret>' \
--data-urlencode 'grant_type=client_credentials'{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"expires_in": 3600,
"token_type": "Bearer"
}