Skip to content

Issue an access token

post /oauth/token

No authentication.

Terminal window
curl -X POST https://api.salesbud.com.br/oauth/token \
-d 'grant_type=client_credentials' \
-d 'client_id=sb_client_...' \
-d 'client_secret=sb_secret_...'
200 OK
{
"access_token": "eyJhbGciOiJSUzI1NiJ9.EXAMPLE_PAYLOAD.EXAMPLE_SIGNATURE",
"token_type": "Bearer",
"expires_in": 3600,
"scope": "meetings.read calls.read transcriptions.read"
}
StatusDescription
200Access token issued.
400OAuth client-credentials request rejected.
401OAuth client authentication failed.
413The request body is larger than the accepted limit.
415The request media type is not supported by this endpoint.
429Client rate limit exceeded.
503A required audit or rate-limit dependency is unavailable.