List Employee Statuses
GET /services/api/v1/employee_statuses
Returns a list of employee status.
Response
Results list.
- Example
- Schema
{
"entries": [
{
"id": "q0Bp7zrE",
"type_of": "active",
"name_en": "Active",
"name_de": "Aktiv",
"name_it": "Attivo",
},
{
"id": "x4Ykp6my",
"type_of": "inactive",
"name_en": "Inactive",
"name_de": "Inaktiv",
"name_it": "Inattivo",
},
{
"id": "x4Ykmxzm",
"type_of": "custom",
"name_en": "V.I.P",
"name_de": "V.I.P",
"name_it": "V.I.P",
}
],
"current_page": 1,
"per_page": 30,
"total_entries": 3
}
Attribute | Type | Description |
---|---|---|
id | string | Employee status id. |
type_of | string | Type of the employee status. Possible values: ["custom", "active", "inactive", "archive", "new"] |
name_{locale} | string | Employee status name in all locales of the business. |