action contribly_get_tags_id { label: "Retrieve a single tag by id" provider: contribly method: GET path: "/tags/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["id", "name"] properties: { colour: { type: "string" description: "Optional HTML hexcode colour" } id: { type: "string" } name: { type: "string" } tagSet: { type: "object" required: ["id", "name"] properties: { id: { type: "string" } name: { type: "string" } } } urlWords: { type: "string" } } } }