asana_get_teams_for_user
Retrieve all teams a user can access in Asana by providing their user GID or using 'me' for the current user, helping identify team memberships and permissions.
Instructions
Get teams to which the user has access
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_gid | Yes | The user GID to get teams for. Use 'me' to get teams for the current user. | |
| opt_fields | No | Comma-separated list of optional fields to include |
Input Schema (JSON Schema)
{
"properties": {
"opt_fields": {
"description": "Comma-separated list of optional fields to include",
"type": "string"
},
"user_gid": {
"description": "The user GID to get teams for. Use 'me' to get teams for the current user.",
"type": "string"
}
},
"required": [
"user_gid"
],
"type": "object"
}