# 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 the integration is using `PaymentIntents` or the new [Stripe Checkout.](https://stripe.com/checkout)
* Review Stripe-related code to ensure everything is running on `PaymentIntents` or [Checkout](https://stripe.com/checkout).
* Check 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` and /`v1/charges`, you might not be SCA-ready and should update that code to use `PaymentIntents` or Checkout.
* Tokenization 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-time 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)