A team is used to group related projects and people together within an organization. Each project in an organization is associated with a team.
TeamCompact
A Compact
object reflects the default fields returned after a successful API request. See input/output options to include more fields in the response.
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
name | string | The name of the team. |
{
"gid": "12345",
"resource_type": "team",
"name": "Marketing"
}
Team
Property | Type | Description |
---|---|---|
gid | string | Globally unique identifier of the resource, as a string. |
resource_type | string | The base type of this resource. |
name | string | The name of the team. |
description | string | Opt in. The description of the team. |
edit_team_name_or_description_access_level | string | Controls who can edit team name and description. One of: all_team_members only_team_admins |
edit_team_visibility_or_trash_team_access_level | string | Controls who can edit team visibility and trash teams. One of: all_team_members only_team_admins |
guest_invite_management_access_level | string | Controls who can accept or deny guest invites for a given team. One of: all_team_members only_team_admins |
html_description | string | Opt in. The description of the team with formatting as HTML. |
join_request_management_access_level | string | Controls who can accept or deny join team requests for a Membership by Request team. One of: all_team_members only_team_admins |
member_invite_management_access_level | string | Controls who can accept or deny member invites for a given team. One of: all_team_members only_team_admins |
organization | object | The organization/workspace the team belongs to. |
organization .gid | string | Globally unique identifier of the resource, as a string. |
organization .resource_type | string | The base type of this resource. |
organization .name | string | The name of the workspace. |
permalink_url | string | A URL that points directly to the object within Asana. |
team_content_management_access_level | string | Controls who can create and share content with the team |
team_member_removal_access_level | string | Controls who can remove team members. One of: all_team_members only_team_admins |
visibility | string | The visibility of the team to users in the same organization |
{
"data": {
"gid": "12345",
"resource_type": "task",
"name": "Marketing",
"description": "All developers should be members of this team.",
"html_description": "<body><em>All</em> developers should be members of this team.</body>",
"organization": {
"gid": "12345",
"resource_type": "task",
"name": "My Company Workspace"
},
"permalink_url": "https://app.asana.com/0/resource/123456789/list",
"visibility": "secret",
"edit_team_name_or_description_access_level": "all_team_members",
"edit_team_visibility_or_trash_team_access_level": "all_team_members",
"member_invite_management_access_level": "all_team_members",
"guest_invite_management_access_level": "all_team_members",
"join_request_management_access_level": "all_team_members",
"team_content_management_access_level": "no_restriction",
"team_member_removal_access_level": "all_team_members"
}
}