action watchful_get_tag_by_id { label: "Find tag by ID" description: "Returns a tag based on ID" provider: watchful method: GET path: "/tags/{id}" encoding: json input: { type: "object" properties: { fields: { type: "string" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }