v1

latestOpenAPI 3.0.02026-07-2640301.0 MB
Debit Card Endpoints

debit-card

This endpoint retrieves a list of debit cards associated with your VoPay account

get/debit-card

Query parameters

AccountIDstring required

Your account ID

Keystring required

API key for the account

Signaturestring required

Hashed signature for the request

DebitCardTokenstring

When provided, this endpoint will only return the debit card associated with this token

ClientAccountIDstring

When provided, this endpoint will only return debit cards associated with this Client Account ID

ClientControlledboolean

When set to true, this endpoint will only return debit cards linked to your VoPay account. When set to false, it will return a list of your customer's debit cards.

Limit integer

Limit the number of records that are returned.

Offset integer

Use this parameter to set the starting point in the dataset.

Response

Successboolean required

True if the request was successful, false if it failed

ErrorMessagestring required

Contains a description of the error if the request failed

Example response

{
  "Success": true,
  "DebitCards": {
    "0": {
      "DebitCardHolderName": "John Smith",
      "DebitCardNumber": "*****1234",
      "DebitCardExpiryYear": "2023",
      "DebitCardExpiryMonth": "12",
      "DebitCardBrand": "visa",
      "DebitCardToken": "ACBDF-GAFSHD-AHBS-123456",
      "IsDefault": true,
      "ClientAccountID": "ClientAccount1",
      "SendingEligibility": "1",
      "ReceivingEligibility": "1",
      "Type": "debit",
      "Brand": "mastercard",
      "FundsAvailability": "immediate",
      "InstitutionName": "bankcorp bank, the",
      "InstitutionCountry": "usa",
      "AccountStatementCurrency": "usd",
      "AcceptanceBrand": "mcc",
      "ProductType": "consumer"
    }
  },
  "Pagination": {
    "TotalRecords": "1000",
    "Offset": "1000",
    "Limit": "1000"
  }
}