Get customer
Method GET
https://my.easyweek.io/api/public/v2/customers/{customer_uuid}
Description: This endpoint retrieves a single customer by UUID. A customer that does not belong to the workspace returns 404.
Example Request
curl -i -X GET \
https://my.easyweek.io/api/public/v2/customers/{customer_uuid} \
-H 'Authorization: Bearer <YOUR_SECRET>' \
-H 'Workspace: <YOUR_WORKSPACE>'
Path Parameters
- customer_uuid (string, required): The unique identifier of the customer to retrieve.
Example Response
{
"uuid": "b6d6a1f2-6f1e-4a2b-9a2c-1f2e3d4c5b6a",
"first_name": "Jane",
"last_name": "Doe",
"middle_name": null,
"phone": "+12025550111",
"email": "jane@example.com",
"birthday": "1990-05-01",
"comment": "VIP client",
"is_business": true,
"company_name": "Acme Inc.",
"vat_number": "VAT123456",
"telegram": "@jane",
"viber": "+12025550111",
"whatsapp": "+12025550111",
"created_at": "2026-07-16T09:00:00Z",
"updated_at": "2026-07-16T09:00:00Z"
}