action rudder_get_group_category_details { label: "Get group category details" description: "Get detailed information about a group category" provider: rudder method: GET path: "/groups/categories/{groupCategoryId}" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["GetGroupCategoryDetails"] } data: { type: "object" required: ["groupCategories"] properties: { groupCategories: { type: "array" items: { type: "object" required: ["parent", "name"] properties: { description: { type: "string" description: "Group category description" } id: { type: "string" format: "uuid" description: "Group category id, only provide it when needed." } name: { type: "string" description: "Name of the group category" } parent: { type: "string" format: "uuid" description: "The parent category of the groups" } } } } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }