--- title: "Authorise using details stored with a third party" url: "https://docs.adyen.com/online-payments/classic-integrations/classic-api-integration/tokenization/authorise-using-details-stored-with-a-third-party" source_url: "https://docs.adyen.com/online-payments/classic-integrations/classic-api-integration/tokenization/authorise-using-details-stored-with-a-third-party.md" canonical: "https://docs.adyen.com/online-payments/classic-integrations/classic-api-integration/tokenization/authorise-using-details-stored-with-a-third-party" last_modified: "2026-07-17T16:24:24+02:00" language: "en" --- # Authorise using details stored with a third party [View source](/online-payments/classic-integrations/classic-api-integration/tokenization/authorise-using-details-stored-with-a-third-party.md) This endpoint is [inactive](/online-payments/upgrade-your-integration#checkout-api-lifecycle) and is no longer supported for new integrations. * If you are building a new integration, [build an online payments](/online-payments/build-your-integration/) 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](/online-payments/upgrade-your-integration/migrate-to-checkout-api). The [Checkout API](https://docs.adyen.com/api-explorer/Checkout/latest/overview) enables your online payments integration to accept all supported payment methods, use latest features, and access more benefits. When you store payment details with a third party, you can use these details to authorise payments.  ## Initial Card on file/Subscription payments The following fields must be passed in a Card-on-File/Subscription payment request: * `amount` * `shopperInteraction`: set to **Ecommerce** for the *initial* payment or set to **ContAuth** for *subsequent* payments. * `recurringProcessingModel`: set to **Subscription** for payments that recur on a fixed schedule, and **Card On File** for payments that do not occur on a fixed schedule. ```json { "card":{ "number":"4111111111111111", "expiryMonth":"8", "expiryYear":"2018", "cvc":"737", "holderName":"John Smith" }, "amount":{ "value":2000, "currency":"EUR" }, "reference":"Your Reference Here", "merchantAccount":"YOUR_MERCHANT_ACCOUNT", "shopperEmail":"s.hopper@test.com", "shopperInteraction":"Ecommerce", "shopperIP":"61.294.12.12", "recurringProcessingModel":"Subscription" } ``` ### Subsequent payments ```json { "card":{ "number":"4111111111111111", "expiryMonth":"8", "expiryYear":"2018", "cvc":"737", "holderName":"John Smith" }, "amount":{ "value":2000, "currency":"EUR" }, "reference":"Your Reference Here", "merchantAccount":"YOUR_MERCHANT_ACCOUNT", "shopperEmail":"s.hopper@test.com", "shopperInteraction":"ContAuth", "shopperIP":"61.294.12.12", "recurringProcessingModel":"Subscription" } ```