curl --request POST \
--url https://sandbox.api.fin.com/v1/customers/individual \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"verification_type": "STANDARD",
"basic_info": {
"first_name": "John",
"last_name": "Doe",
"dob": "1990-01-15",
"email": "john.doe@example.com",
"phone": "+1234567890",
"country_of_residence": "AFG",
"nationality": "AFG",
"tin": "123-45-6789"
},
"address": {
"street": "123 Main St",
"city": "New York",
"state": "US-NY",
"postal_code": "10001",
"country": "AFG"
},
"financial_profile": {
"occupation_id": 1,
"source_of_fund_id": 1,
"purpose_id": 1,
"monthly_volume_usd": 5000
},
"meta_data": {
"customer_reference": "REF-12345",
"internal_notes": "VIP customer"
}
}
'{
"data": {
"customer_id": "55bd6b4e-c20a-4cc8-9535-91d5557a67d9",
"tos_policies_url": "https://orchestration.fin.com/orchestration-customer-tos?customer_id=55bd6b4e-c20a-4cc8-9535-91d5557a67d9&tos_policies_value=e9414388-fbdf-4407-b5c2-bc39eae3645b"
}
}Create a new individual customer with verification details
curl --request POST \
--url https://sandbox.api.fin.com/v1/customers/individual \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"verification_type": "STANDARD",
"basic_info": {
"first_name": "John",
"last_name": "Doe",
"dob": "1990-01-15",
"email": "john.doe@example.com",
"phone": "+1234567890",
"country_of_residence": "AFG",
"nationality": "AFG",
"tin": "123-45-6789"
},
"address": {
"street": "123 Main St",
"city": "New York",
"state": "US-NY",
"postal_code": "10001",
"country": "AFG"
},
"financial_profile": {
"occupation_id": 1,
"source_of_fund_id": 1,
"purpose_id": 1,
"monthly_volume_usd": 5000
},
"meta_data": {
"customer_reference": "REF-12345",
"internal_notes": "VIP customer"
}
}
'{
"data": {
"customer_id": "55bd6b4e-c20a-4cc8-9535-91d5557a67d9",
"tos_policies_url": "https://orchestration.fin.com/orchestration-customer-tos?customer_id=55bd6b4e-c20a-4cc8-9535-91d5557a67d9&tos_policies_value=e9414388-fbdf-4407-b5c2-bc39eae3645b"
}
}RELIANCE verification type but it’s not enabled for your client, you will receive a 423 error with message: “RELIANCE is not available for your client”Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Type of verification to perform. Note that RELIANCE verification must be enabled for your client, or you will receive a 423 error.
STANDARD, RELIANCE "STANDARD"
Show child attributes
Show child attributes
Show child attributes
Additional custom metadata as key-value pairs
{
"customer_reference": "REF-12345",
"internal_notes": "VIP customer"
}Individual customer created successfully
Show child attributes