v1

latestOpenAPI 3.0.02026-07-2459256884.4 KB
Credit Card Brands

Retrieve Credit Card Brand Information

Retrieve credit card brand information for a user and their associated credit cards.

post/v1/creditCards/brands

Request body

extUserIdstring required

The external user ID to associate with these credit cards

Example request

{
  "extUserId": "user-123456",
  "creditCards": [
    {
      "extCreditCardId": "147500249-1098-1221-2168-6122859797551",
      "creditCardNumberEncrypted": "U2FtcGxlRW5jcnlwdGVkQ2FyZE51bWJlckluQmFzZTY0Rm9ybWF0VGhhdFNwYW5zU2V2ZXJhbExpbmVz",
      "accountOriginationDate": "2024-03-12",
      "liabilitySubtype": "FlexibleSpendingCreditCard",
      "creditor": {
        "originalName": "JPMCB CARD SERVICES",
        "address": {
          "addressLine1": "123 Main Street",
          "city": "San Francisco",
          "state": "CA",
          "zip": "90211"
        }
      }
    }
  ]
}

Response

Credit card brand information

Example response

{
  "data": {
    "extUserId": "user-123456",
    "creditCards": [
      {
        "extCreditCardId": "147500249-1098-1221-2168-6122859797551",
        "creditCardName": "Chase Freedom Visa Signature",
        "creditCardArtUrl": "https://cdn.spnwhl.io/images/logo/<uuid>.png",
        "status": "SUCCESS"
      }
    ]
  }
}