Identities
Create identity
Create a new identity with the TypeScript SDK.
POST
Create identity
Use
The response echoes every field you sent.
blnk.Identity.create to create an identity for an individual or organization.
blnk.Identity.create
| Field | Description |
|---|---|
identity_type | individual or organization. |
identity_id | Optional ID you can set yourself. Blnk generates one if you omit it. |
organization_name | Name of the organization. |
first_name | First name of the individual. |
last_name | Last name of the individual. |
other_names | Any other names for the individual. |
gender | Gender of the individual. |
dob | Date of birth (ISO 8601, for example 1990-01-15T00:00:00Z). |
email_address | Email address. |
phone_number | Contact number. |
nationality | Nationality of the individual. |
category | Your own customer category. |
street | Street address. |
country | Country of residence. |
state | State of residence. |
post_code | Postal code. |
city | City of residence. |
meta_data | Optional metadata. |
Response shape
201 Created
| Field | Description |
|---|---|
identity_id | Unique ID for the identity. Use it to link balances. |
identity_type | Type you passed in the request. |
created_at | Date and time the identity was created. |
meta_data | Metadata stored with the identity. |
Related docs
How identities work
Linking balances and handling profile data.
Create new identity
HTTP request and response schema.