action contribly_post_tagsets { label: "Create a new tag set" provider: contribly method: POST path: "/tagsets" encoding: json input: { type: "object" required: ["name", "urlWords"] properties: { name: { type: "string" } urlWords: { type: "string" } } } output: { type: "object" required: ["id", "name"] properties: { id: { type: "string" } name: { type: "string" } } } }