An object representing an employee's membership within a particular group.
Attribute | Type | Description |
---|---|---|
id | Integer | The identifier of the GroupMembership itself. (See note below) |
group_id | Integer | The identifier for a group. |
employee_id | Integer | The identifier for an employee. |
name | String | The name of the group corresponding to the group id. |
archived | Boolean | If true, the given group has been archived. |
NOTE: GroupMembership "id" is rarely used
Most requests that involve an employee's membership within a group simply require a combination of
employee_id
andgroup_id
to be fulfilled.