action etherpad_get_htmlusing_get {
label: "returns the text of a pad formatted as HTML"
provider: etherpad
method: GET
path: "/getHTML"
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: {
html: {
type: "string"
}
}
}
message: {
type: "string"
}
}
}
}