action illumidesk_teams_groups_update { label: "Patch team group" provider: illumidesk method: PATCH path: "/v1/teams/{team}/groups/{group}/" encoding: json input: { type: "object" properties: { group: { type: "string" } team: { type: "string" } } required: ["group", "team"] additionalProperties: false } output: { type: "object" additionalProperties: true } }