This endpoint is inactive and is no longer supported for new integrations.
- If you are building a new integration, build an online payments integration with Checkout API instead.
- If you have an existing integration using this endpoint, reach out to your Adyen contact and migrate to Checkout API.
The Checkout API enables your online payments integration to accept all supported payment methods, use latest features, and access more benefits.
After you successfully stored payment details during the first /authorise call, you can refer to these details in subsequent calls every time a recurring payment should take place.
One-click payments
For subsequent one-click payments, include in your /authorise request:
card.cvc: the card CVC that you collected from the shopper.recurring.contract: ONECLICKrecurringProcessingModel: CardOnFileshopperReference: TheshopperReferencethat you specified when storing the payment details.shopperInteraction: ContAuthselectedRecurringDetailReference: Either therecurringDetailReferencereturned from the list of all stored details based on theshopperReference, or LATEST to use the most recent recurring detail.
The following code examples show the request of a one-click payment.
If you are hosting the CSE library, include the encrypted card CVC in additionalData:
{
"amount":{
"value":2000,
"currency":"EUR"
},
"additionalData":{
"card.encrypted.json":"adyenjs_0_1_18$*******"
},
"reference":"Your Reference Here",
"merchantAccount":"YOUR_MERCHANT_ACCOUNT",
"shopperEmail":"s.hopper@test.com",
"shopperIP":"61.294.12.12",
"shopperReference":"YOUR_UNIQUE_SHOPPER_ID_IOfW3k9G2PvXFu2j",
"selectedRecurringDetailReference":"LATEST",
"recurring":{
"contract":"ONECLICK"
},
"recurringProcessingModel":"CardOnFile",
"shopperInteraction":"ContAuth"
}
Recurring payments
For subsequent recurring payments, include in your /authorise request:
recurring.contract: RECURRINGrecurringProcessingModel: SubscriptionshopperReference: TheshopperReferencethat you specified when storing the payment details.shopperInteraction: ContAuthselectedRecurringDetailReference: Either therecurringDetailReferencereturned from the list of all stored details based on theshopperReference, or LATEST to use the most recent recurring detail.
The following code examples show the request of a recurring payment.