action etherpad_create_author_if_not_exists_for_using_post { label: "this functions helps you to map your application author ids to Etherpad author ids" provider: etherpad method: POST path: "/createAuthorIfNotExistsFor" encoding: json input: { type: "object" properties: { authorMapper: { type: "string" } name: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { code: { type: "integer" } data: { type: "object" properties: { authorID: { type: "string" } } } message: { type: "string" } } } }