action clickmeter_tags_patch_data_point { label: "Associate/Deassociate a tag with a datapoint" provider: clickmeter method: PUT path: "/tags/{tagId}/datapoints/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" } } } }