# Check your integration for Strong Customer Authentication (SCA) compliance

To review your Stripe integration to ensure compliance with Strong Customer Authentication (SCA) and PSD2 regulation:
* Review recent objects in the [Dashboard](https://dashboard.stripe.com), specifically on the [Payments](https://dashboard.stripe.com/payments) page, to verify that the integration is using `PaymentIntents` or the new [Stripe Checkout.](https://stripe.com/checkout)
* Review Stripe-related code to ensure that everything is running on `PaymentIntents` or [Checkout](https://stripe.com/checkout).
* Check the logs page for payment patterns. Charges created using the `/v1/charges` endpoint are not SCA ready.
## Additional information
* If some of your code still runs on `/v1/tokens` or /`v1/charges`, you might not be SCA ready and should update that code to use `PaymentIntents` or Checkout.
* Tokenisation and secure collection of payment details falls under [PCI compliance](https://stripe.com/en-at/guides/pci-compliance) and is not a focus for SCA.
* [One-off payments with the Payment Intents API](https://stripe.com/docs/payments/payment-intents) (Stripe Docs)
* [Creating Payment Intents](https://stripe.com/docs/payments/payment-intents/creating-payment-intents) (Stripe Docs)
* [Responsibility for Strong Customer Authentication (SCA)-related integration changes](/questions/responsibility-for-strong-customer-authentication-sca-related-integration-changes)