Last modified:2025-04-12 19:38:28
Maintainer:Not configured
Avibra uses the OAuth 2.0 Client Credentials Grant flow to obtain an access_token, which is then used to make REST API calls.
Request
Body Params application/x-www-form-urlencoded
Responses
application/json curl --location --request POST 'https://authsandbox.avibra.com/oauth2/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'grant_type=client_credentials' \
--data-urlencode 'client_id=' \
--data-urlencode 'client_secret=' \
--data-urlencode 'scope='
Response Response Example
{
"access_token": "",
"expires_in": 0,
"token_type": "Bearer"
}
Modified at 2025-04-12 19:38:28