Create Individual Client Data

Create Individual Client Data

URL: /api/v1/custom-individual-onboarding/

Method: POST

Auth required: YES

Setup Process: This API is for creating the Individual Client Data. In the payload, we need to pass reference_id of the client along with the first_name, last_name, address, city, date_of_birth, postcode, state, country_code. If any data is missing, we may use null for that particular field. If everything on point, we'll be able to create the Individual Client Data.

Payload

KeyTypeValue
reference_idstringThe reference id of the company
first_namestringFirst name of the client
last_namestringLast name of the client
addressstringAddress of the client
citystringThe living city of the client
date_of_birthstringDate of Birth of the client
postcodestringPost code address of the client
statestringThe state where the client lives
country_codestringCountry code of the Country where the client lives

Payload Example

{
  "reference_id": "1719410490756-5174",
  "first_name": "abc",
  "last_name": "smith",
  "address": "abcd",
  "city": "abc",
  "date_of_birth": "2024-05-10",
  "postcode": "abc",
  "state": "abc",
  "country_code": "GB"
}

Response

FieldTypeDescription
status_codeintStatus code of the request
messagestringIndividual Client data created successfully / Failed (with reason)
dataobjectThis should remain empty for this API

Response Example

{
  "status_code": 200,
  "message": "Individual Client data created successfully",
  "data": []
}