GET
/
user_banks
List User Banks
curl --request GET \
  --url https://api.useswift.dev/user_banks \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "account_number": "12345678",
      "account_holder_type": "individual",
      "bank_account_type": "checking",
      "created_at": "2024-01-31T23:59:59Z",
      "id": "user_bank_vjb43lkAdf934jb13Df93",
      "is_rtp_enabled": true,
      "is_rtp_rfp_enabled": true,
      "routing_number": "12345678",
      "status": "active",
      "user_id": "user_vjb43lkAdf934jb13Df93",
      "verification_status": "verified"
    }
  ],
  "next_cursor": "Y3Vyc29y"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cursor
string

Return the page of entries after this one.

limit
integer

Limit the size of the list that is returned. The default (and maximum) is 100 objects.

Required range: 1 <= x <= 100
status
string

Filter the list of User Banks by status.

user_id
string

Filter the list of User Banks by User.

Response

User Banks

A list of User Bank objects.

data
User Bank · object[]
required
next_cursor
string | null
required

A pointer to a place in the list.