Title: paymentIntents API
Last modified: October 22, 2020

---

# paymentIntents API

 *  Resolved [rchannelwp](https://wordpress.org/support/users/rchannelwp/)
 * (@rchannelwp)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/paymentintents-api/)
 * Hello,
 * Is it possible to use Stripe paymentIntents API for Google Pay with this plugin?
 * Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * (@mrclayton)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/paymentintents-api/#post-13569430)
 * Hi [@rchannelwp](https://wordpress.org/support/users/rchannelwp/),
 * The direct GPay integration uses the Stripe sources API but the Payment Request
   gateway which has a GPay integration uses the payment intents API.
 * Kind Regards,
 *  Thread Starter [rchannelwp](https://wordpress.org/support/users/rchannelwp/)
 * (@rchannelwp)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/paymentintents-api/#post-13569470)
 * Interesting, thanks for quick reply.
 * We’re trying to find out if we can force 3d Secure for Google Pay (and alternatively
   Apple Pay) via Stripe.
 * It seems that with Payment Intent API’s we might be able to do this…
 * Thank you!
 *  Plugin Author [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * (@mrclayton)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/paymentintents-api/#post-13569567)
 * Hi [@rchannelwp](https://wordpress.org/support/users/rchannelwp/),
 * Yes theoretically this is possible using the filters provided by the plugin.
 * Example:
 *     ```
       add_filter('wc_stripe_payment_intent_args', function($args, $order){
           $args['payment_method_options']['card']['request_three_d_secure'] = 'any';
           return $args;
       }, 10, 2);
       ```
   
 * This will force 3D secure on all payment methods in which 3D secure is accepted.
 * Kind Regards,

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘paymentIntents API’ is closed to new replies.

 * ![](https://ps.w.org/woo-stripe-payment/assets/icon-256x256.png?rev=2611337)
 * [Payment Plugins for Stripe WooCommerce](https://wordpress.org/plugins/woo-stripe-payment/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-stripe-payment/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-stripe-payment/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-stripe-payment/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-stripe-payment/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-stripe-payment/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Clayton R](https://wordpress.org/support/users/mrclayton/)
 * Last activity: [5 years, 7 months ago](https://wordpress.org/support/topic/paymentintents-api/#post-13569567)
 * Status: resolved