> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ach.netevia.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get All Bank Accounts

> Suggest Edits

This API retrieves a list of all bank accounts associated with a business or person. The response includes details such as the account number, routing number, account holder's name, account type, and other relevant information.

<Info>
  This route is secured with **processor** and **vendor** token authentication.
</Info>

### Endpoint

GET   **/3p/api/v1/users/\{uuid}/bank-accounts**

### Response

<CodeGroup>
  ```json Success (200) theme={"system"}
  {
      "status": true,
      "message": "",
      "data": [
          {
              "uuid": "9d2648f3-74d3-43b9-ba41-2d935bee844d",
              "user_uuid": "9d264832-8987-4793-8422-b615fe23fdf3",
              "account_number": "12345678901234",
              "routing_number": "056008849",
              "account_name": "Jack Jones",
              "account_type": "checking",
              "aggregator_type": "manual",
              "created_at": "2024-10-02 13:59:42",
              "is_default": true
          },
          {
              "uuid": "9d264832-8b56-40ff-ab6a-5cd3a111e317",
              "user_uuid": "9d264832-8987-4793-8422-b615fe23fdf3",
              "account_number": "1111222233330000",
              "routing_number": "011401533",
              "account_name": "Jack Jones",
              "account_type": "checking",
              "aggregator_type": "plaid",
              "created_at": "2024-10-02 13:57:35",
              "is_default": false
          }
      ],
      "errors": null,
      "error_code": null
  }
  ```
</CodeGroup>
