Secure Payments API – Create Billing Card
Introduction
Creating billing credit cards is one of the billing credit card options available through the Secure Payments API.
How To
To add a billing credit card to your account, send a POST request to the endpoint:
POST https://securepayments.loanpro.io/api/billing-card
This will return a token similar to a customer credit card. Save this token, as you will need it to edit or delete the account in the future. This action requires the same OBO Token that is required to add a customer credit card.
Here's a sample JSON payload:
{
"address": "123 Sample Road",
"cardholder_name": "Dean Trumbell",
"expiration_date": "01/2022",
"city": "Salt Lake City",
"state": "UT",
"zipcode": "84101",
"card_number": "4444333322221111",
"country": "usa"
}