Get Users For Workspace
asana_get_users_for_workspaceRetrieve Asana workspace users' GID, name, and email to assign tasks or filter by assignee.
Instructions
List all users in a workspace. Returns gid, name, and email for each user. Use this to find a user's GID before assigning tasks or filtering by assignee. Supports pagination for large workspaces.
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,email,photo`. Default fields: gid, resource_type, name. |