action clickmeter_tags_patch_group { label: "Associate/Deassociate a tag with a group" provider: clickmeter method: PUT path: "/tags/{tagId}/groups/patch" encoding: json input: { type: "object" properties: { tagId: { type: "integer" format: "int64" } } required: ["tagId"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } }