Teams API
A team represents a group of Flow users.
This endpoint has the following methods:
GET /teams/: Gets a list of teams and their associated information.POST /teams/: Creates a new team.GET /teams/{id}: Gets information for a team by ID.PUT /teams/{id}: Updates team information by ID.DELETE /teams/{id}: Deletes a team by ID.
Fields
Name | Type | Description |
|---|---|---|
| double | Unique identifier for a team. |
| string | Name of a team. |
| string | Name of a vendor. |
| string | Team description contains this string. |
| string | Team description is null. |
| integer | parent_id (if team is child). |
| string | Parent team is null. |
| string | Team is visible in report menus. |
| string | Date and time a team was created. |
Example response
"id": 204215,
"name": "Engineers",
"description": null,
"org": 1234,
"avatar": null,
"vendor": null,
"created_at": "2024-10-08T17:49:34.204286",
"parent": null,
"path": "204215",
"ancestors": [
"Technology"
],
"visibility": "SHOW",
"team_level": 1,
"inherited_depth": "aggregate",
"nested_teams": 0,
"all_users": 0,
"unnested_users": 0,
"depth": "inherit"
}