Recurring Charges
Charge the first transaction
Why is charging the user required when adding their cards?
Get the Card authorization
{
...
"data": {
...
"authorization": {
"authorization_code":"AUTH_XXXXXX",
"card_type":"visa",
"last4":"0444",
"exp_month":"01",
"exp_year":"2023",
"bin":"401234",
"bank":"TEST BANK",
"channel":"card",
"signature": "SIG_XXXXXX",
"reusable":true,
"country_code":"PS",
},
...
}
}Store the authorization
Charge the authorization
Last updated