action n_auth_delete_user_accounts { label: "Delete all accounts of a specific user" description: "Delete all accounts corresponding to this user. The user itself is not deleted. Required permission: 'accounts' or 'users'." provider: n_auth method: DELETE path: "/servers/{serverid}/users/{userid}/accounts" encoding: json input: { type: "object" properties: { serverid: { type: "string" } userid: { type: "string" } } required: ["serverid", "userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }