Avibra Integration API
1.0.1
  • 1.0.2
  • 1.0.1
Home
Home
1.0.1
  • 1.0.2
  • 1.0.1
1.0.1
  • 1.0.2
  • 1.0.1
  1. Security
  • Avibra
    • Embedded UX/UI
    • Security
      • Authentication API
        POST
      • LinkToken API
        POST
    • Benefits
      • Get Benefits With Status
    • User Management
      • Create User
      • Update User
      • Cancel User
      • Prefil User
    • Webhook
      • Webhook API (provided by partner)
    • Export Data
      • Open API Spec
      • API Coverages
  • Schemas
    • Schemas
      • eventInfo
      • userInfo
      • addressInfo
      • benefitwithstatusInfo
      • benefitwithstatusInfos
      • errorInfo
      • updateuserInfo
      • linktokenInfo
      • linktokenesponseInfo
      • accesstokenInfo
      • getbenefitInfo
      • offerInfo
      • offerInfos
      • currentofferdetailsInfo
      • offers
      • prefillInfo
Home
Home
1.0.1
  • 1.0.2
  • 1.0.1
1.0.1
  • 1.0.2
  • 1.0.1
  1. Security

Authentication API

POST
https://authsandbox.avibra.com/oauth2/token
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

Header Params

Body Params application/x-www-form-urlencoded

Responses

🟢200Success
application/json
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
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
200 - Valid Response
{
    "access_token": "",
    "expires_in": 0,
    "token_type": "Bearer"
}
Modified at 2025-04-12 19:38:28
Previous
Security
Next
LinkToken API