Get Teams For Workspace
asana_get_teams_for_workspaceList teams in an Asana workspace to obtain their GIDs and names. Use the returned team GID when creating a project in a workspace that requires a team.
Instructions
List all teams in a workspace. Returns gid and name for each team. Use this to find a team GID before calling asana_create_project — most organization workspaces require a team. Supports pagination.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Results per page (1-100). | |
| offset | No | Pagination offset token from a previous response's next_page.offset. | |
| workspace | No | The GID of the workspace (numeric string, e.g. `'1234567890123'`). Get it from asana_list_workspaces. Can be omitted if ASANA_DEFAULT_WORKSPACE_GID is set. | |
| opt_fields | No | Comma-separated extra fields to include. Useful values: `gid,name,description,organization.name,visibility`. Default fields: gid, resource_type, name. |