Employees are the people working in your organisation. Use these endpoints to list employees; to map a Dyflexis employee to an external personnel number; and to create or update an external employee record from your own HR or payroll system.
Three list endpoints are exposed under different token scopes so each consumer sees only the data its scope is allowed to read: business, clock, and payroll.
Requires scope: business.
Fetches all active employees, their labels, and their card numbers.
Security
apiKey(Required scopes: business)
- Mock serverhttps://beta-developer.dyflexis.com/_mock/openapi/api/business/v3/employees
- Productionhttps://app.dyflexis.com/your-tenant/api/business/v3/employees
curl -i -X GET \
'https://beta-developer.dyflexis.com/_mock/openapi/api/business/v3/employees?page=1&includeInactive=true' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
{ "_links": { "self": { … }, "next": { … }, "prev": { … }, "first": { … }, "last": { … } }, "pageCount": 100, "employees": [ { … } ] }