action clickmeter_tags_patch_tag_name { label: "Fast patch a tag name" provider: clickmeter method: PUT path: "/tags/{tagId}/name" encoding: form input: { type: "object" properties: { Text: { type: "string" } tagId: { type: "integer" format: "int64" } } required: ["tagId"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" format: "int64" } uri: { type: "string" } } } }