provider Accounts DELETE /accounts/{account_id}
@utdk/front /accounts/{account_id}
Delete an account
Deletes an account Required scope: `accounts:delete`
account_id path required
The Account ID. Alternatively, you can supply the account domain or external ID as a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1).
string

Try it

Authentication
Configure credentials for Core API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

deleteAnAccount
DELETE/accounts/{account_id}
Deletes an account Required scope: `accounts:delete`

Parameters

required

The Account ID. Alternatively, you can supply the account domain or external ID as a [resource alias](https://dev.frontapp.com/docs/resource-aliases-1).

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import front from '@utdk/front';

await front.deleteAnAccount({
  "account_id": "acc_123"
})