Get employee details
Employees: Query employee records synced from your HRIS. Employees are read-only via the API.
Endpoint1 params
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
idpath | UUID | yes | The employee ID |
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/employees/${id}`, {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
},
});
const { data } = await response.json();
console.log(data);Response
json
{
"data": {
"id": "emp-uuid-001",
"remote_id": "HRIS-12345",
"first_name": "Jane",
"last_name": "Smith",
"display_name": "Jane Smith",
"email": "jane@acme.com",
"employment_status": "ACTIVE",
"start_date": "2024-03-15",
"termination_date": null,
"job_title": "Software Engineer",
"department": "Engineering",
"work_location": "New York",
"company_name": "Acme Corp"
}
}