action etherpad_list_pads_of_author_using_get { label: "returns an array of all pads this author contributed to" provider: etherpad method: GET path: "/listPadsOfAuthor" encoding: json input: { type: "object" properties: { authorID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { padIDs: { type: "array" items: { type: "string" } } } } message: { type: "string" } } } }