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
| Key | Type | Value |
|---|---|---|
| reference_id | string | The reference id of the company |
| first_name | string | First name of the client |
| last_name | string | Last name of the client |
| address | string | Address of the client |
| city | string | The living city of the client |
| date_of_birth | string | Date of Birth of the client |
| postcode | string | Post code address of the client |
| state | string | The state where the client lives |
| country_code | string | Country 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
| Field | Type | Description |
|---|---|---|
| status_code | int | Status code of the request |
| message | string | Individual Client data created successfully / Failed (with reason) |
| data | object | This should remain empty for this API |
Response Example
{
"status_code": 200,
"message": "Individual Client data created successfully",
"data": []
}