action contribly_post_tags { label: "Create a new tag" provider: contribly method: POST path: "/tags" encoding: json input: { type: "object" required: ["name"] properties: { colour: { type: "string" } name: { type: "string" } tagSet: { type: "object" required: ["id", "name"] properties: { id: { type: "string" } name: { type: "string" } } } urlWords: { type: "string" } } } 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" } } } }