# Manual confirmation for off-session payments requiring Strong Customer Authentication (SCA) 

Off-session PaymentIntents that fail confirmation due to Strong Customer Authentication (SCA) requirements have a status of "requires_payment_method", and completing a manual confirmation flow requires a PaymentIntent status of "requires_action".
### Option 1
1. [Create a new PaymentIntent](https://stripe.com/docs/payments/cards/saving-cards#create-payment-intent) using the same customer and payment method.
1. Attempt confirmation with "off_session" set to `false`.
1. Confirmation should fail with Payment Intent in "requires_action" status.
1. Use this new PaymentIntent to complete manual confirmation.
### Option 2
1. Use an [update PaymentIntent](https://stripe.com/docs/api/payment_intents/update) API call to set [payment_method](https://stripe.com/docs/api/payment_intents/update#update_payment_intent-payment_method) to the same payment method ID that failed.
1. Attempt confirmation with "off_session" set to `false`.
1. Confirmation should fail with PaymentIntent in "requires_action" status.
1. Complete manual confirmation with the PaymentIntent.
## Additional Information
* The `stripe.handleCardPayment` method used in manual confirmation only works with the "requires_action" status, so you will need to transition the PaymentIntent to "requires_action"