External Accounts

Manage external bank accounts used for ACH transfers and payouts.


List External Accounts

Retrieves all external bank accounts.

Endpoint: GET /v1/external-accounts

Use Cases:

  • View available payout destinations
  • Verify bank account details
  • Assign accounts to producers/carriers

Example:

curl -X GET "https://api.advancehq.com/v1/external-accounts" \
  -H "Authorization: Bearer your_api_key"

Response:

[
  {
    "account_id": "ext_abc123",
    "account_name": "Operating Account",
    "account_number": "****4567",
    "routing_number": "021000021",
    "account_owner_name": "Smith Insurance Agency LLC",
    "account_owner_email": "[email protected]",
    "bank_name": "Chase Bank",
    "type": "checking",
    "subtype": "business",
    "account_owner_address": {
      "street_line_1": "456 Business Ave",
      "city": "Chicago",
      "state": "IL",
      "postal_code": "60601"
    }
  }
]