Used to create new clients via the endpoint "clients/"

Use the "clients/" endpoint to create a new client.

The required fields are the first_name and last_name parameters

Example

Create client

{

"last_name": "aLastName",
"first_name": "aFirstName"

}

The endpoint will return a response such as this one

{
"created_on": null,
"updated_on": null,
"email": null,
"phone_number": null,
"id": 50084,
"last_name": "aLastName",
"first_name": "aFirstName",
"national_id": null,
"full_name": "aFirstName+aLastName",
"total_documents": null,
"accounts": null,
"created_by": null,
"transactions_duration": null,
"dob": null,
"title": null

}

Use the returned "id": 50084as your client ID to upload documents for analysis

Language
Authorization
OAuth2
Click Try It! to start a request and see the response here!