List all Cards Sent

‍Retrieves list of all cards sent from an account
Send
List all Cards Sent
 last updated: 
November 30, 2023

ENDPOINT

  1. GET v1/send/card?accountId={{accountId}}

FILTERS

Filter Type Description
offset int start index (default = 0)
limit int number of records to return (default = 25, max = 100)
orderBy enum sort the list of card by createdAt, for example:
?orderBy=createdAt → order by createdAt ascending order
?orderBy=-createdAt → order by createdAt descending order (default if not passed)
accountId string account ID
modifiedStartTime string modified time in ISO UTC format (YYYY-MM-DDThh:mm:ssZ)
modifiedEndTime string modified time in ISO UTC format (YYYY-MM-DDThh:mm:ssZ)
externalId string Matches the externalId key if set in the object's metadata
availableLimit int filters by a range on the limitAmount field
(eg. ?minAvailableLimit=0.00&maxAvailableLimit=1000.09)

RESPONSE

  1. {
  2.   "total": 1,
  3.   "data": [
  4.     {
  5.       "id": "tra-4938b5e6-e46a-48c6-93f4-b979c473b448",
  6.       "bankName": "",
  7.       "accountId": "acc-cdc4ca0a-2f1b-4c0b-9964-2339268c2d7b",
  8.       "contactId": "con-41b5c690-d14d-4fe0-9f9a-e787bd01f102",
  9.       "name": "Prepaid Cardholder",
  10.       "accountNumber": "",
  11.       "routingNumber": "",
  12.       "address": {
  13.         "addressType": "card",
  14.         "line1": “123 S Main St,"
  15.         "line2": "",
  16.         "city": "Los Angeles",
  17.         "state": "CA",
  18.         "country": "US",
  19.         "postalCode": "90001-1234”
  20.       },
  21.       "amount": "13.00",
  22.       "status": "completed",
  23.       "description": "Test Send Card",
  24.       "txnType": "debit",
  25.       "transferType": "solidCard",
  26.       "transferSubType": "originated",
  27.       "createdAt": "2022-09-26T22:51:37Z",
  28.       "modifiedAt": "2022-09-26T22:51:44Z",
  29.       "transferredAt": "2022-09-26T22:51:37Z",
  30.       "accountType": "",
  31.       "iban": "",
  32.       "valid": "",
  33.       "parentTransferId": "",
  34.       "reviewCode": "",
  35.       "reviewMessage": "",
  36.       "type": "",
  37.       "metadata": null,
  38.       "title": "",
  39.       "card": {
  40.         "id": "crd-9d2ce271-5aab-4c01-8783-ed85bc19dc84",
  41.         "accountId": "",
  42.         "businessId": "",
  43.         "programId": "prg-ddb08641-6565-465d-ba94-ed199497299f",
  44.         "cardholder": {
  45.           "id": "chd-3294337d-89bb-4b0d-91fb-c1152aa6a573",
  46.           "personId": "per-537d730c-1d63-4f3b-aa41-4c23df974749",
  47.           "billingAddress": {
  48.             "addressType": "billing",
  49.             "line1": “123 S Main St",
  50.             "line2": "",
  51.             "city": "Los Angeles",
  52.             "state": "CA",
  53.             "country": "US",
  54.             "postalCode": "90001-1234”
  55.           },
  56.           "createdAt": "2022-02-01T14:54:05Z",
  57.           "modifiedAt": "2022-09-26T22:51:43Z",
  58.           "name": "Prepaid Cardholder"
  59.         },
  60.         "cardType": "virtual",
  61.         "label": "Jane",
  62.         "limitAmount": "13.00",
  63.         "limitInterval": "allTime",
  64.         "shipping": null,
  65.         "currency": "USD",
  66.         "expiryMonth": "09",
  67.         "expiryYear": "2023",
  68.         "last4": "0570",
  69.         "cardStatus": "active",
  70.         "activatedAt": "2022-09-26T22:51:43Z",
  71.         "createdAt": "2022-09-26T22:51:43Z",
  72.         "modifiedAt": "2022-09-26T22:51:43Z",
  73.         "createdPersonId": "per-c1df28cb-a889-41ea-9ab3-6b33c8985c0f",
  74.         "metadata": null,
  75.         "bin": "debit",
  76.         "allowedCategories": null,
  77.         "availableLimit": "13.00",
  78.         "blockedCategories": null,
  79.         "embossingPerson": "",
  80.         "embossingBusiness": "",
  81.         "theme": "",
  82.         "atmAccess": true,
  83.         "allowedMerchants": null,
  84.         "blockedMerchants": null,
  85.         "walletId": "",
  86.         "familyId": ""
  87.       }
  88.     }
  89.   ]
  90. }