action etherpad_create_author_using_post { label: "creates a new author" provider: etherpad method: POST path: "/createAuthor" encoding: json input: { type: "object" properties: { name: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { authorID: { type: "string" } } } message: { type: "string" } } } }