action etherpad_list_authors_of_pad_using_post { label: "returns an array of authors who contributed to this pad" provider: etherpad method: POST path: "/listAuthorsOfPad" encoding: json input: { type: "object" properties: { padID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { authorIDs: { type: "array" items: { type: "string" } } } } message: { type: "string" } } } }