# Accounts

All accounts related paths

 - [GET /users/{user_id}/accounts](https://docs.upvest.co/api/accounts/list_user_accounts.md): Lists the accounts of a user specified by ID.
 - [GET /accounts/{account_id}](https://docs.upvest.co/api/accounts/retrieve_account.md): Returns the account specified by its ID, including its type, status, and the account group it belongs to.
 - [PATCH /accounts/{account_id}](https://docs.upvest.co/api/accounts/update_account.md): Updates the account specified by its ID. Only the account `name` can be updated. Returns the full updated account object.
 - [DELETE /accounts/{account_id}](https://docs.upvest.co/api/accounts/account_closure.md): Initiates the closure of the account specified by its ID. Closure is a two-step process: the account status changes to `CLOSING`, and once all preconditions are met the account transitions to `CLOSED`
 - [GET /accounts](https://docs.upvest.co/api/accounts/list_accounts.md): Returns a paginated list of accounts. Use the `offset` and `limit` query parameters to page through results; `meta.total_count` gives the total number of matching accounts. Both user and business acco
 - [POST /accounts](https://docs.upvest.co/api/accounts/create_account.md): Creates an account for a user or a business within an existing account group. The account is created with status `PENDING_APPROVAL` and switches to `ACTIVE` once the owner's onboarding is complete; su
 - [GET /businesses/{business_id}/accounts](https://docs.upvest.co/api/accounts/list_business_accounts.md): Lists the accounts of a business specified by ID.
 - [POST Account events](https://docs.upvest.co/api/accounts/account_event.md): Notifies subscribers of account lifecycle events. Triggered when an account is created, activated, updated, locked, closed, or has its closure initiated. See the Account webhooks guide ([TOL](https://
