Skip to main content
GET
/
v2
/
employees
/
{employeeId}
Search for a specific employee
curl --request GET \
  --url https://external.pleo.io/v2/employees/{employeeId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "<string>",
    "firstName": "<string>",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "lastName": "<string>",
    "code": "<string>",
    "jobTitle": "<string>",
    "phone": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

employeeId
string<uuid>
required

Enter the employee ID.

Response

Employee resource found

data
object
required