action n_auth_update_account_user { label: "Update user of the given account." description: "Update the user of the given account. Required permission: 'accounts'." provider: n_auth method: PUT path: "/servers/{serverid}/accounts/{accountid}/user" encoding: json input: { type: "object" properties: { accountid: { type: "string" } serverid: { type: "string" } userid: { type: "string" } } required: ["accountid", "serverid", "userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }