GET
/
accounts
/
:acc_id
/
card_brands
curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/card_brands" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "cbrd_BDpzdie35Ldkm",
      "account_id": "acc_yVf3mkzbhz9tj",
      "network": "visa",
      "status": "completed",
      "issuer": "Wells Fargo",
      "last4": "1234",
      "brands": [
          {
              "art_id": "art_Yvd3922dfalja",
              "url": "https://static.methodfi.com/card_brands/f5a54867fb8fab076c2d36216ea2ca60.png",
              "id": "brand_cms12dmfnDSJ3",
              "name": "Wells Fargo Cash Wise"
          },
          {
              "art_id": "art_22dfaljaYvd39",
              "url": "https://static.methodfi.com/card_brands/c8fbea81f8aafca9b475cff3172c0bd4.png",
              "id": "brand_anDwro12EUHe4",
              "name": "Wells Fargo Autograph"
          },
          {
              "art_id": "art_2a2ljcmozdxdd",
              "url": "https://static.methodfi.com/card_brands/f5a54867fb8fa8aafca9b475cff3172a8.png",
              "id": "brand_38ShenxSulqjs",
              "name": "Wells Fargo Active Cash"
          }
      ],
      "shared": true,
      "error": null,
      "created_at": "2024-11-06T20:43:38.820Z",
      "updated_at": "2024-11-06T20:43:38.820Z"
    },
    {...}
  ],
  "message": null
}

Retrieve a list of Card Brands’ metadata for a specific Account.

Path Parameters

acc_id
string
required

ID of the Account.

Query Parameters

from_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Card Brands created on and after the date provided.

to_date
string

ISO 8601 formatted date (YYYY-MM-DD) to filter for Card Brands created on and before the date provided.

page
string

The number of the page to return.

page_cursor
string

The ID of a resource from which a page should start or end. Mutually exclusive with page.

page_limit
string

The number of Card Brands to return per page.

Returns

Returns a list of Card Brands.

curl "https://production.methodfi.com/accounts/acc_yVf3mkzbhz9tj/card_brands" \
  -H "Method-Version: 2024-04-04" \
  -H "Authorization: Bearer sk_WyZEWVfTcH7GqmPzUPk65Vjc"
{
  "success": true,
  "data": [
    {
      "id": "cbrd_BDpzdie35Ldkm",
      "account_id": "acc_yVf3mkzbhz9tj",
      "network": "visa",
      "status": "completed",
      "issuer": "Wells Fargo",
      "last4": "1234",
      "brands": [
          {
              "art_id": "art_Yvd3922dfalja",
              "url": "https://static.methodfi.com/card_brands/f5a54867fb8fab076c2d36216ea2ca60.png",
              "id": "brand_cms12dmfnDSJ3",
              "name": "Wells Fargo Cash Wise"
          },
          {
              "art_id": "art_22dfaljaYvd39",
              "url": "https://static.methodfi.com/card_brands/c8fbea81f8aafca9b475cff3172c0bd4.png",
              "id": "brand_anDwro12EUHe4",
              "name": "Wells Fargo Autograph"
          },
          {
              "art_id": "art_2a2ljcmozdxdd",
              "url": "https://static.methodfi.com/card_brands/f5a54867fb8fa8aafca9b475cff3172a8.png",
              "id": "brand_38ShenxSulqjs",
              "name": "Wells Fargo Active Cash"
          }
      ],
      "shared": true,
      "error": null,
      "created_at": "2024-11-06T20:43:38.820Z",
      "updated_at": "2024-11-06T20:43:38.820Z"
    },
    {...}
  ],
  "message": null
}