Get Employee

Retrieve detailed information about a specific employee by ID.

GET
/api/v2/employees/{id}

Description

Fetches detailed information about a single employee identified by their unique ID. Returns complete employee profile including contact information, department, job title, and other attributes.

This endpoint also supports the include query parameter (same as the List Employees endpoint) to expand related data such as assigned assets. Example: /api/v2/employees/emp_123?include=assets

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the employee

Query Parameters (Optional)

ParameterTypeRequiredDescription
includeStringNoComma-separated list of related data to include. Options: assets, manager, department. Example: assets,manager

Response

Response Fields

FieldTypeDescription
successbooleanWhether the request was successful
dataobjectEmployee object containing all profile information
data.idstringUnique employee identifier
data.emailstringEmployee's email address
data.firstNamestringEmployee's first name
data.lastNamestringEmployee's last name
data.departmentstringEmployee's department
data.jobTitlestringEmployee's job title
data.statusstringEmployment status (active, inactive, on_leave)

Error Responses

Common error responses you may encounter when using this endpoint.

Notes

  • This endpoint requires valid authentication. Include your access token in the Authorization header.
  • You can only retrieve employees within your organization or those you have explicit permission to view.
  • The response includes all standard employee fields. Contact details may be restricted based on your role and permissions.
  • Use the include query parameter to expand related data such as assigned assets. This works the same way as the List Employees endpoint.
  • For bulk operations or retrieving multiple employees, use the List Employees endpoint instead.

Related Endpoints

Did this page help you?