curl --request GET \
--url https://app.kapso.ai/api/v1/customers/{customer_id} \
--header 'X-API-Key: <api-key>'
{
"data": {
"id": "customer-123abc",
"name": "Acme Corporation",
"external_customer_id": "CUS-12345",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
Returns details for a specific customer
curl --request GET \
--url https://app.kapso.ai/api/v1/customers/{customer_id} \
--header 'X-API-Key: <api-key>'
{
"data": {
"id": "customer-123abc",
"name": "Acme Corporation",
"external_customer_id": "CUS-12345",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
API key required for all endpoints
Customer details
The response is of type object
.
Was this page helpful?