action n_auth_update_account { label: "Update specific account" description: "Update an account. The only available change is (un)blocking the account. Required permission: 'accounts'.\n" provider: n_auth method: PUT path: "/servers/{serverid}/accounts/{accountid}/" encoding: json input: { type: "object" properties: { accountid: { type: "string" } blocked: { type: "string" } serverid: { type: "string" } } required: ["accountid", "blocked", "serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }