The Team Object ### Description The Team
object is used to represent a subdivision of the company, usually a department. Each employee will be grouped into one specific Team. ### Usage Example If you're building a way to filter by Team
, you'd hit the GET Teams
endpoint to fetch the Teams
, and then use the ID
of the team your user selects to filter the GET Employees
endpoint.
Name | Type | Description | Notes |
---|---|---|---|
Id | Guid | [optional] [readonly] | |
RemoteId | string | The third-party API ID of the matching object. | [optional] |
Name | string | The team's name. | [optional] |
ParentTeam | Guid? | The team's parent team. | [optional] |
RemoteWasDeleted | bool | Indicates whether or not this object has been deleted by third party webhooks. | [optional] [readonly] |
FieldMappings | Dictionary<string, Object> | [optional] [readonly] | |
ModifiedAt | DateTime | This is the datetime that this object was last updated by Merge | [optional] [readonly] |
RemoteData | List<RemoteData> | [optional] [readonly] |