Documentation

Get all bank accounts

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.


📘

Authentication Route

This route is secured with processor and vendor token authentication.


Endpoint

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

 


Response

{
    "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
}