action etherpad_list_pads_using_post { label: "returns all pads of this group" provider: etherpad method: POST path: "/listPads" encoding: json input: { type: "object" properties: { groupID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { padIDs: { type: "array" items: { type: "string" } } } } message: { type: "string" } } } }