action dracoon_request_last_admin_rooms_groups {
label: "Request rooms where the group is defined as last admin group"
description: "
🚀 Since v4.10.0
\n\n### Description: \nRetrieve a list of all rooms where the group is defined as last admin group.\n\n### Precondition:\nRight 🔓 change groups required.\n\n### Postcondition: \nList of rooms is returned. \n\n### Further Information:\nAn empty list is returned if no rooms were found where the group is defined as last admin group."
provider: dracoon
method: GET
path: "/v4/groups/{group_id}/last_admin_rooms"
encoding: json
input: {
type: "object"
properties: {
"X-Sds-Auth-Token": {
type: "string"
}
group_id: {
type: "integer"
format: "int64"
}
}
required: ["group_id"]
additionalProperties: false
}
output: {
type: "object"
description: "List of (last admin group) rooms"
required: ["items"]
properties: {
items: {
type: "array"
description: "List of last admin rooms"
items: {
type: "object"
description: "Room information"
required: ["id", "name", "parentPath"]
properties: {
id: {
type: "integer"
format: "int64"
description: "Room ID"
}
name: {
type: "string"
description: "Room name"
}
parentId: {
type: "integer"
format: "int64"
description: "Parent room ID"
}
parentPath: {
type: "string"
description: "Parent node path\n\n`/` if node is a root node (room)"
}
}
}
}
}
}
}