action asana_get_team_memberships { label: "Get team memberships" description: "Returns compact team membership records." provider: asana method: GET path: "/team_memberships" encoding: json input: { type: "object" properties: { team: { type: "string" } user: { type: "string" } workspace: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }