action etherpad_get_chat_head_using_post { label: "returns the chatHead (chat-message) of the pad" provider: etherpad method: POST path: "/getChatHead" encoding: json input: { type: "object" properties: { padID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { chatHead: { type: "object" properties: { text: { type: "string" } time: { type: "integer" } userId: { type: "string" } userName: { type: "string" } } } } } message: { type: "string" } } } }