List Employee Tag Assignments
GET /services/api/v1/employee_tag_assignments
Returns a list of employee tag assignment.
Optional Query Parameters
Parameter | Type | Description |
---|---|---|
employee_id | string | Filter employee tag assignments by employee. |
employee_tag_id | string | Filter employee tag assignments by employee tag. |
Response
Results list.
- Example
- Schema
{
"entries": [
{
"id": "q0Bp7zrE",
"employee_id": "0Zz5ynzv",
"employee_tag_id": "R5BPWezx"
},
{
"id": "x4Ykp6my",
"employee_id": "nyBnyvzM",
"employee_tag_id": "mk6WpyzX"
}
],
"current_page": 1,
"per_page": 30,
"total_entries": 2
}
Attribute | Type | Description |
---|---|---|
id | string | Employee tag assignment ID. |
employee_id | string | ID of the employee. |
employee_tag_id | string | ID of the employee tag. |