Pular para o conteúdo

Get the authenticated integration context

get /v1/context

Sem autenticação.

Terminal window
curl "https://api.salesbud.com.br/v1/context" \
-H "Authorization: Bearer $SALESBUD_ACCESS_TOKEN"
200 OK
{
"data": {
"object": "api_context",
"client": {
"id": "sb_client_ExampleClient01",
"name": "acme-sync"
},
"company": {
"id": "cmp_ExampleCompany01",
"name": "Example Company"
},
"scopes": [
"meetings.read",
"calls.read",
"transcriptions.read"
],
"rate_limit": {
"requests_per_minute": 120
}
},
"request_id": "req_ExampleRequestId01"
}
StatusDescrição
200API client, company, scopes and rate-limit context.
401Missing or invalid credentials.
429Client rate limit exceeded.
503A required audit or rate-limit dependency is unavailable.