Retrieve a paginated list of customers with optional search functionality
curl --location 'https://api.example.com/api/customers/getCustomers?page=0&limit=10&search=acme' \ --header 'Authorization: Bearer YOUR_TOKEN'
{ "success": true, "clientes": [ { "customer_id": 1, "name": "Acme Corporation", "legal_name": "Acme Corp Ltd.", "tax_id": "ABC123456789", "contact_origin": "WEB_FORM", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:30:00Z", "total_count": 1 } ], "totalCount": 1, "page": 0, "pageSize": 10 }
Show Customer Object
curl --location 'https://api.example.com/api/customers/getCustomersById/1' \ --header 'Authorization: Bearer YOUR_TOKEN'
{ "success": true, "cliente": { "customer_id": 1, "name": "Acme Corporation", "legal_name": "Acme Corp Ltd.", "tax_id": "ABC123456789", "contact_origin": "WEB_FORM", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:30:00Z" } }