Fetch Customer

Retrieve details for a specific customer by their ID.

Endpoint

GET /api/customers/{customer_id}

Path Parameters

ParameterTypeRequiredDescription
customer_idstringYesThe unique identifier for the customer

Response

Returns the customer object.
{
  "id": "cust_123456789",
  "name": "John Doe",
  "email": "john@example.com",
  "phone": "+1234567890",
  "created_at": "2023-01-01T00:00:00Z"
}