action etherpad_create_session_using_get { label: "creates a new session. validUntil is an unix timestamp in seconds" provider: etherpad method: GET path: "/createSession" encoding: json input: { type: "object" properties: { authorID: { type: "string" } groupID: { type: "string" } validUntil: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { sessionID: { type: "string" } } } message: { type: "string" } } } }