action etherpad_create_pad_using_post { label: "createPadUsingPOST" description: "creates a new (non-group) pad. Note that if you need to create a group Pad, you should call createGroupPad" provider: etherpad method: POST path: "/createPad" encoding: json input: { type: "object" properties: { padID: { type: "string" } text: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" } message: { type: "string" } } } }