action etherpad_set_htmlusing_post {
label: "sets the text of a pad with HTML"
provider: etherpad
method: POST
path: "/setHTML"
encoding: json
input: {
type: "object"
properties: {
html: {
type: "string"
}
padID: {
type: "string"
}
}
additionalProperties: false
}
output: {
type: "object"
properties: {
code: {
type: "integer"
}
data: {
type: "object"
}
message: {
type: "string"
}
}
}
}