Getting Started
Ledger Balances
Transactions
Identities
Create Identity
POST
/
identities
curl --request POST \
--url http://localhost:5001/identities \
--header 'Content-Type: application/json' \
--data '{
"identity_type": "organization",
"name": "Blnk",
"category": "fintech",
"street": "10 Aso Villa Way",
"country": "Nigeria",
"state": "Lagos",
"post_code": "101001",
"city": "Lagos",
"created_at": "2023-10-16T10:00:00Z",
"meta_data": {
"verified": true,
"reference": "XYZ123456789"
}
}'
{
"identity_id": "idt_0b5f333d-e0b8-4422-8e0e-5d41a767f1db",
"identity_type": "organization",
"organization_name": "",
"category": "fintech",
"first_name": "",
"last_name": "",
"other_names": "",
"gender": "",
"dob": "0001-01-01T00:00:00Z",
"email_address": "",
"phone_number": "",
"nationality": "",
"street": "10 Aso Villa Way",
"country": "Nigeria",
"state": "Lagos",
"post_code": "101001",
"city": "Lagos",
"created_at": "2024-02-20T05:27:44.748526423Z",
"meta_data": {
"reference": "XYZ123456789",
"verified": true
}
}
Body
application/json
The body is of type object
.
Response
201 - application/json; charset=utf-8
Created
The response is of type object
.
Was this page helpful?
curl --request POST \
--url http://localhost:5001/identities \
--header 'Content-Type: application/json' \
--data '{
"identity_type": "organization",
"name": "Blnk",
"category": "fintech",
"street": "10 Aso Villa Way",
"country": "Nigeria",
"state": "Lagos",
"post_code": "101001",
"city": "Lagos",
"created_at": "2023-10-16T10:00:00Z",
"meta_data": {
"verified": true,
"reference": "XYZ123456789"
}
}'
{
"identity_id": "idt_0b5f333d-e0b8-4422-8e0e-5d41a767f1db",
"identity_type": "organization",
"organization_name": "",
"category": "fintech",
"first_name": "",
"last_name": "",
"other_names": "",
"gender": "",
"dob": "0001-01-01T00:00:00Z",
"email_address": "",
"phone_number": "",
"nationality": "",
"street": "10 Aso Villa Way",
"country": "Nigeria",
"state": "Lagos",
"post_code": "101001",
"city": "Lagos",
"created_at": "2024-02-20T05:27:44.748526423Z",
"meta_data": {
"reference": "XYZ123456789",
"verified": true
}
}