Employee Contact Details
Retrieve employee contact details
Get employee contact information including personal email, phone number, and emergency contact details.
This endpoint provides access to all communication channels for reaching the employee and their designated emergency contact person.
get/v1/employees/{employeeId}/contact
Path parameters
employeeIdstring uuid required
Unique identifier for the employee
Response
Employee contact details retrieved successfully
Example response
{
"personalEmail": "foo.bar@personal.com",
"personalPhoneNumber": "+41791234567",
"emergencyContact": {
"name": "Jane Doe",
"phoneNumber": "+41791234568",
"relationship": "SPOUSE"
}
}