Get Single Client

Retrieve detailed information for a specific client by ID.

GET /datatable-clients/{id}
Example Request
GET /api/v1.0/datatable-clients/123
Response
{
  "data": [{
    "id": "123",
    "first_name": "John",
    "last_name": "Doe",
    "email": "john.doe@example.com",
    "tax_id": "123-45-6789",
    "categories": [
      {"id": "10", "label": "Modern Art"},
      {"id": "15", "label": "Antiques"}
    ],
    "additional_charges": [],
    "consignor_commissions": [
      {
        "consignor_commission": "15.00",
        "step_from": "0.00"
      }
    ],
    ...
  }]
}
Back to Clients Back to API Home