action etherpad_list_sessions_of_author_using_post { label: "returns all sessions of an author" provider: etherpad method: POST path: "/listSessionsOfAuthor" encoding: json input: { type: "object" properties: { authorID: { 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" } } } }