action n_auth_register_user { label: "Register a userid for the currently logged in account." description: "Register a user for the currently logged in account. You can also directly pass a user name when generating an ENROL qr code. Required permission: 'users'." provider: n_auth method: POST path: "/servers/{serverid}/sessions/registeruser" encoding: json input: { type: "object" properties: { "X-nonce": { type: "string" } serverid: { type: "string" } userid: { type: "string" } } required: ["X-nonce", "serverid", "userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }