action etherpad_list_sessions_of_group_using_get { provider: etherpad method: GET path: "/listSessionsOfGroup" encoding: json input: { type: "object" properties: { groupID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { sessions: { type: "array" items: { type: "object" properties: { authorID: { type: "string" } groupID: { type: "string" } id: { type: "string" } validUntil: { type: "integer" } } } } } } message: { type: "string" } } } }