action etherpad_get_chat_history_using_get { label: "returns the chat history" provider: etherpad method: GET path: "/getChatHistory" encoding: json input: { type: "object" properties: { end: { type: "string" } padID: { type: "string" } start: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { messages: { type: "array" items: { type: "object" properties: { text: { type: "string" } time: { type: "integer" } userId: { type: "string" } userName: { type: "string" } } } } } } message: { type: "string" } } } }