action n_auth_delete_account { label: "Delete specific account" description: "Delete an account. Required permission: 'accounts'." provider: n_auth method: DELETE path: "/servers/{serverid}/accounts/{accountid}/" encoding: json input: { type: "object" properties: { accountid: { type: "string" } serverid: { type: "string" } } required: ["accountid", "serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }