Get Customer
GET /v0/customers/{customer_id}
Path parameters
customer_id — string · uuid (Required) The unique identifier of the customer
Header parameters
Authorization — string (Required) Token for authentication
Responses
200 — Successful retrieval of customer data Content-Type: application/json
Response object (example):
{
"customer_id": "123e4567-e89b-12d3-a456-426614174000",
"email": "[email protected]",
"company_name": "Acme Corporation",
"type": "individual",
"first_name": "John",
"last_name": "Doe",
"address": {
"country": "United States",
"city": "San Francisco",
"street_line_1": "123 Main Street",
"postal_code": "94105",
"state": "CA"
},
"kycs": {
"status_breakdown": [
{
"currency": "aed",
"payment_rails": "uaefts",
"status": "pending"
}
],
"sub_status": "kyc_form_submission_started",
"kyc_flow_link": "text"
}
}Request example
Last updated 7 months ago
Last updated