action contribly_get_tagsets_id { label: "Retrieve a single tag set by id" provider: contribly method: GET path: "/tagsets/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["id", "name"] properties: { id: { type: "string" } name: { type: "string" } } } }