action etherpad_get_last_edited_using_post { label: "returns the timestamp of the last revision of the pad" provider: etherpad method: POST path: "/getLastEdited" encoding: json input: { type: "object" properties: { padID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { lastEdited: { type: "integer" } } } message: { type: "string" } } } }