action etherpad_pad_users_using_post { label: "returns the list of users that are currently editing this pad" provider: etherpad method: POST path: "/padUsers" encoding: json input: { type: "object" properties: { padID: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { padUsers: { type: "array" items: { type: "object" properties: { colorId: { type: "string" } id: { type: "string" } name: { type: "string" } timestamp: { type: "integer" } } } } } } message: { type: "string" } } } }