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

Create User

POST
https://dev.avibra.com/preprod/user/account/create
Last modified:2025-06-25 16:06:03
Maintainer:Not configured
The API is used to create a user account within the Avibra ecosystem. Ensure a unique Idempotency-Key header is included to prevent duplicate account creation. Use the header Version: v2 to enable idempotency and synchronous API execution.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🔴500Server Error
🟠400Bad Request
🟠401Unauthorized
🟠409Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://dev.avibra.com/preprod/user/account/create' \
--header 'Idempotency-Key: {{$string.uuid}}' \
--header 'Version: v2' \
--header 'x-api-key;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "firstname": "James",
    "lastname": "Smith",
    "email": "example@email.com",
    "zipcode": "10001",
    "dob": "2000-03-03",
    "partneroffer": "",
    "userid": "current10001",
    "phone": "1234123412",
    "gender": "M",
    "address": {
        "addline1": "123 Bond Street",
        "addline2": "",
        "addline3": "",
        "city": "NY",
        "state": "NY",
        "zipcode": "10001"
    },
    "benefits": [
        "life"
    ]
}'
Response Response Example
200 - Valid Response
"Successful"
Modified at 2025-06-25 16:06:03
Previous
User Management
Next
Update User