provider Accounts GET /accounts/{account_id}
@utdk/front /accounts/{account_id}
Fetch an account
Fetches an account Required scope: `accounts:read`
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
fetchAnAccount
GET/accounts/{account_id}
Fetches an account Required scope: `accounts:read`

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).

Configure credentials above to enable sending.

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

TypeScript

import front from '@utdk/front';

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