action up_get_categories_id { label: "Retrieve category" description: "Retrieve a specific category by providing its unique identifier.\n" provider: up method: GET path: "/categories/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Successful response to get a single category and its ancestry.\n" required: ["data"] properties: { data: { description: "The category returned in this response.\n" type: "object" } } } }