action etherpad_get_text_using_post { label: "returns the text of a pad" provider: etherpad method: POST path: "/getText" encoding: json input: { type: "object" properties: { padID: { type: "string" } rev: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { text: { type: "string" } } } message: { type: "string" } } } }