action contribly_get_tags { label: "List tags" description: "Retrieve tags." provider: contribly method: GET path: "/tags" encoding: json input: { type: "object" properties: { ownedBy: { type: "string" } tagSet: { type: "string" } urlWords: { type: "string" } } additionalProperties: false } output: { type: "array" items: { 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" } } } } }