action contribly_get_tagsets { label: "List tag sets" description: "Retrieve tag sets." provider: contribly method: GET path: "/tagsets" encoding: json input: { type: "object" properties: { ownedBy: { type: "string" } urlWords: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "name"] properties: { id: { type: "string" } name: { type: "string" } } } } }