A
GetTeamUsersAsana
AsanaApi.GetTeamUsersAsana
Description
Retrieve user records for a specific Asana team.
This tool fetches the compact records of all users who are members of a specified Asana team. It should be called to obtain a list of team members, sorted alphabetically, with a limit of 2000 users.
Input Parameters
{
"parameters": [
{
"name": "team_global_identifier",
"required": true,
"inferrable": true,
"description": "Globally unique identifier for the Asana team to retrieve users from.",
"value_schema": {
"val_type": "string"
}
},
{
"name": "enable_pretty_output",
"required": false,
"inferrable": true,
"description": "Enable pretty output with line breaks and indentation for readability. Recommended for debugging as it increases response time and size.",
"value_schema": {
"val_type": "boolean"
}
},
{
"name": "include_optional_fields",
"required": false,
"inferrable": true,
"description": "Comma-separated list of properties you wish to include in the response. These are excluded by default.",
"value_schema": {
"val_type": "array",
"inner_val_type": "string"
}
},
{
"name": "pagination_offset_token",
"required": false,
"inferrable": true,
"description": "Offset token for pagination. Use this token from a previous response to fetch the next page of results.",
"value_schema": {
"val_type": "string"
}
}
]
} Output
{
"description": "Response from the API endpoint 'getUsersForTeam'.",
"value_schema": {
"val_type": "json"
},
"available_modes": [
"value",
"error"
]
}