A team represents a group of Flow users.
This endpoint has the following methods:
-
GET https://flow.pluralsight.com/v3/customer/core/teams
: Gets a list of teams and their associated information. -
POST https://flow.pluralsight.com/v3/customer/core/teams
: Creates a new team. -
GET https://flow.pluralsight.com/v3/customer/core/teams/{id}
: Gets information for a team by ID. -
PUT https://flow.pluralsight.com/v3/customer/core/teams/{id}
: Updates team information by ID. -
DELETE https://flow.pluralsight.com/v3/customer/core/teams/{id}
: Deletes a team by ID.
Fields
Name | Type | Description |
---|---|---|
id | double | Unique identifier for a team. |
name | string | Name of a team. |
vendor | string | Name of a vendor. |
description__icontains | string | Team description contains this string. |
description__isnull | string | Team description is null. |
parent | integer | parent_id (if team is child). |
parent__isnull | string | Parent team is null. |
is_visible | string | Team is visible in report menus. |
created_at | 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"
}