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

Prefil User

POST
https://dev.avibra.com/preprod/user/prefill
Last modified:2025-11-19 17:03:19
Maintainer:Not configured
Allows prefill data to capture through api and prefill it on registration page. Include a unique Idempotency-Key (usually hash of request body) header. If same idempotency key comes in header and prefill exists with that request, response will be 409 - user exists already. if new idempotent key come then api will create or update existing entry. Use the header Version: v2 to enable idempotency and ensure 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

🟠400Bad Request
🟠401Unauthorized
🟠409User exists already
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://dev.avibra.com/preprod/user/prefill' \
--header 'Idempotency-Key;' \
--header 'Version;' \
--header 'x-api-key;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "firstname": "Ivah",
    "lastname": "Stokes",
    "email": "abc123@yahoo.com",
    "zipcode": "08830",
    "dob": "2022-01-02",
    "userid": "current10001",
    "phone": "7326921234",
    "gender": "M",
    "address": {
        "addline1": "143 bond street",
        "addline2": "",
        "addline3": "",
        "city": "iselin",
        "state": "NJ",
        "zipcode": "08830"
    }
}'
Response Response Example
200 - Valid Response
"Successful"
Modified at 2025-11-19 17:03:19
Previous
Cancel User
Next
Upgrade/Downgrade User