This functionality is available for the following models:
☑ Acquirer
☑ Aggregator
token provided by Kushki which represents the customer's credit card.startDate.startDate. For example, for a monthly subscription with start date: 10-01-2021, with a rejection on 10-02-2021, payment will be retried until 13-02-2021, 3 times each day, for a total of 9 payment attempts.retryConfiguration object as follows:retryType:"schedule". If you choose schedule, you can specify in the value field you can specify in value how often the collection will be reattempted.{
"retryConfiguration":{
"retryType":"schedule",
"value":[2]
}
}retryType:"fixed". Send the specific days of the month to retry. Ex. 10th, 20th, 30th.{
"retryConfiguration":{
"retryType":"fixed",
"value":[10,20,30]
}
}Send the retryTypeasfixedif you do not want to retry collection for the entire month.
If the last charge attempt was declined, we may send you a notification via WebHook informing you about it. In these cases, we recommend you to contact the card owner and offer them a set of alternatives for paying the fee that could not be charged; for example, changing the registered credit card and generating an One-click payment only for one time. Kushki will continue executing automatic charges over the following periods.
Important!
When customizing retries it should be noted that once the first collection is initiated, if it fails and retries are initiated, any updates to retries will be applied until the next subscription period (weekly, monthly, yearly).
periodicity field:Got a suggestion on this documentation? Contact Us.
Product in beta version in Ecuador 🇪🇨 🔐👨💻
We are working on our beta version. Stay tuned for its official release! You can also contact your account manager for more information.
threeDomainSecure object in your request.curl --location --request POST 'https://api-uat.kushkipagos.com/subscriptions/v1/card' \
--header 'Private-Merchant-Id;' \
--header 'Content-Type: application/json' \
--data-raw '{
"token": "gV3ox6100000sAxClU033646vnnJsT83",
"planName": "Premium",
"periodicity": "monthly",
"contactDetails": {
"documentType": "RUT",
"documentNumber": "11111111-1",
"email": "user@example.com",
"firstName": "John",
"lastName": "Doe",
"phoneNumber": "+56912345678"
},
"amount": {
"subtotalIva": 0,
"subtotalIva0": 10000,
"ice": 0,
"iva": 0,
"currency": "CLP"
},
"startDate": "2022-05-25",
"metadata": {
"plan": {
"fitness": {
"cardio": "include",
"rumba": "include",
"pool": "include"
}
}
}
}'{
"subscriptionId": "1601594972296000"
}