email or phone_number to quickly find specific customers. Results are sorted by creation date (newest first).curl --location --request GET '/customers?page=1&limit=20&email=jane@example.com&phone_number=+2348012345678' \
--header 'Authorization: Bearer <token>'{
"status": true,
"message": "Customers retrieved successfully",
"data": [
{
"uid": "cust_abc123def456",
"email": "jane@example.com",
"phone_number": "+2348012345678",
"first_name": "Jane",
"last_name": "Doe",
"date_of_birth": "1995-06-15",
"status": "active",
"points_balance": 1500,
"created_at": "2026-01-15T10:30:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 50,
"total": 150,
"total_pages": 3
}
}