customer/v1/token/fund

[POST] customer/v1/token/fund

Fund account via tokenized debit card

The tokenized fund endpoint allows customers to fund their account balance via transaction from an external debit card account. The card details are tokenized first, before being passed in the POST call as "paymentToken". The "cardType" for this transaction must be "TOKEN". Funds are not available immediately, they will display in the customer's current balance, but they require settlement before they display in the customer's available balance. All funding requests are made in the lowest possible denomination of a currency; eg a funding request for $1.00 USD will be sent as 100.

Example [POST] Request

{{card_base_url}}/customer/v1/token/fund
{
        "amount" : "",
        "currency" : "",
        "memo" : "",
        "cardType" : "",
        "paymentToken" : "",
        "cardholderFirstname" : "",
        "cardholderLastname" : "",
        "cardholderCompany" : "",
        "cardholderAddress1" : "", 
        "cardholderAddress2" : "",
        "cardholderCity" : "",
        "cardholderState" : "",
        "cardholderZip" : "",
        "cardholderCountry" : "",
        "cardholderPhone" : "",
        "cardholderEmail" : "",
}

Input Parameters

ParameterFormatRequiredDetails
"amount"IntegerYFunding amount in lowest currency e.g. cents
"currency"String; Three-letter ISO currency codeYThe transaction currency
"memo"StringNThe transaction memo
"cardType"enumYCard type. See below
"paymentToken"StringYTokenized card information
"cardholderFirstname"StringYCardholder first name
"cardholderLastname"StringYCardholder last name
"cardholderCompany"StringNCardholder's company
"cardholderAddress1"StringYCardholder's billing address
"cardholderAddress2"StringNCardholder's billing address, line 2
"cardholderCity"StringYCardholder's billing city
"cardholderState"String; Format: CCYCardholder's billing state
"cardholderZip"StringYCardholder's billing zip code
"cardholderCountry"String; Two-letter ISO 3166. Format: CCNCardholder's billing country
"cardholderPhone"StringNCardholder's billing phone number
"cardholderEmail"StringNCardholder's billing email

Card Types

CodedescriptionNotes
TOKENTokenized debit card informationRequires paymentToken

Example Response

{
    "fund" : {
        "amount" : "",
        "currency" : "",
        "memo" : "",
        "cardType" : "",
        "paymentToken" : "",
        "cardholderFirstname" : "",
        "cardholderLastname" : "",
        "cardholderCompany" : "",
        "cardholderAddress1" : "",
        "cardholderAddress2" : "",
        "cardholderCity" : "",
        "cardholderState" : "",
        "cardholderZip" : "",
        "cardholderCountry" : "",
        "cardholderPhone" : "",
        "cardholderEmail" : "",
    },
    "transactionId" : "",
    "cardToken" : "",
    "status": "",
    "dateCreated": "",
    "dateUpdated": "",
}

Response Elements

(In addition to elements found in the input parameters)

ElementDetails
transactionIdUUID payment identifier
cardTokenTokenized debit card information
statusStatus of payment at end of transaction. See Payments Overview.
dateCreatedTransaction processed date in format ISO 8601 YYYY-MM-DD.
dateUpdatedDate of last status update in format ISO 8601 YYYY-MM-DD

Error Codes

codeMessage
1001"Missing required field"
1002"Invalid data structure"
1003"Invalid data"