Identities
Create identity
Create a new identity with the Go SDK.
POST
Create identity
Use
The response echoes every field you sent.
client.Identity.Create to create an identity for an individual or organization.
Call the method
client.Identity.Create
| Field | Type | Description |
|---|---|---|
IdentityType | blnkgo.IdentityType | Individual or Organization. |
Save the identity ID
Use
identity.IdentityId to link balances or update profile details later.Response
201 Created
| Field | Type | Description |
|---|---|---|
identity_id | string | Unique ID for the identity. Use it to link balances. |
identity_type | string | Type you passed in the request. |
created_at | string | Date and time the identity was created. |
meta_data | object | Metadata stored with the identity. |
Related docs
How identities work
Linking balances and handling profile data.
Create new identity
HTTP request and response schema.