API 1
cURL
curl --request GET \ --url https://openapi.pleo.io/v1/employees \ --header 'Authorization: Bearer <token>'
{ "metadata": { "pageInfo": { "pageSize": 123, "totalCount": 123, "nextPageOffset": 123 } }, "employees": [ { "id": "<string>", "firstName": "<string>", "lastName": "<string>", "email": "<string>", "jobTitle": "<string>", "role": "<string>", "phone": "<string>", "avatar": { "url": "<string>" }, "code": "<string>", "teamId": "<string>" } ] }
Open API Bearer token
This is the pagination offset value. The record number you would like to start from. This offset value starts at 0.
"150"
The number of employees to return for each page.
"10"
Employees has been returned
Additional metadata including pagination information
Show child attributes