{"id":11944,"date":"2023-08-05T08:38:51","date_gmt":"2023-08-05T08:38:51","guid":{"rendered":"https:\/\/wooshpay.com\/?post_type=docs&#038;p=11944"},"modified":"2023-08-09T07:32:21","modified_gmt":"2023-08-09T07:32:21","password":"","slug":"wooshpay-direct-api","status":"publish","type":"docs","link":"https:\/\/wooshpay.com\/fr\/docs\/wooshpay-direct-api\/","title":{"rendered":"WooshPay Direct API"},"content":{"rendered":"<p><strong>Ensure PCI compliance for card as payment method.<\/strong><\/p>\n\n\n\n<p>Anyone involved with the processing, transmission, or storage of card data must comply with the Payment Card Industry Data Security Standards (PCI DSS). PCI compliance is a shared responsibility and applies to both WooshPay and your business. When accepting payments, you must do so in a PCI compliant manner. The simplest way for you to be PCI compliant is to never see (or have access to) card data at all.<\/p>\n\n\n\n<p>Use the Payment Intents API to build an integration that can handle complex payment flows. It tracks a payment from creation through checkout, and triggers additional authentication steps when required.<\/p>\n\n\n\n<p>Some of the advantages of using the Payment Intents API include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Automatic authentication handling<\/li>\n\n\n\n<li>No double charges<\/li>\n\n\n\n<li>No idempotency key issues<\/li>\n\n\n\n<li>Support for Strong Customer Authentication (SCA) and similar regulatory changes<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-a-complete-set-of-apis\">A complete set of APIs<\/h2>\n\n\n\n<p>Use the Payment Intents API together with the Setup Intents and Payment Methods APIs. These APIs help you handle dynamic payments (for example, additional authentication like 3D Secure) and prepare you for expansion to other countries while allowing you to support new regulations and regional payment methods.<\/p>\n\n\n\n<p>Building an integration with the Payment Intents API involves two actions: creating and confirming a PaymentIntent. In the following paragraph, we will Introduction the payment intent API by payment flow:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Non-3DS payment flow<\/li>\n\n\n\n<li>3DS payment flow<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-non-3ds-payment-flow\">Non-3DS payment flow<\/h3>\n\n\n\n<p>The non-3ds payment flow provides a clear scope of what&#8217;s WooshPay role is regarding the whole payment process from the customer initiating the payment till finalized it. WooshPay uses a PaymentIntent object to represent your intent to collect payment from a customer, tracking charge attempts and payment state changes throughout the process.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/kroki.io\/plantuml\/svg\/eNp9UrtuwzAM3P0V_AH_gIcgRYaiW9AOnVmZjgnoYYi0jfbrS9VJYRlFNUig7njkUTqLYtY5-Gaykx1PGBUus2gKlAEFHNSQZ7KjAFwBb5SXLUOq-_eUZJzw8wfRxpZrT447eE6gCQwJRXDCGxnE7Uk6odhDyr3JcRxSDqicYoNOeUElKyBG0w4umUp83TReotq-o2kj2hZBeCWdc4RI64Hc055ehbtWrzkt3BN8sPccb9CTInsBtD4Hjuj5ix5O7h5sHgY-3N0T_rKQ4sA5_O-hMJ9UKUz6W-borRKAlXW0ZNRZDh5ls1S1l0lmv6tqT1tcOKONaT3SqiHtAsuydTZh-0_fIgXUXA==\" alt=\"https:\/\/kroki.io\/plantuml\/svg\/eNp9UrtuwzAM3P0V_AH_gIcgRYaiW9AOnVmZjgnoYYi0jfbrS9VJYRlFNUig7njkUTqLYtY5-Gaykx1PGBUus2gKlAEFHNSQZ7KjAFwBb5SXLUOq-_eUZJzw8wfRxpZrT447eE6gCQwJRXDCGxnE7Uk6odhDyr3JcRxSDqicYoNOeUElKyBG0w4umUp83TReotq-o2kj2hZBeCWdc4RI64Hc055ehbtWrzkt3BN8sPccb9CTInsBtD4Hjuj5ix5O7h5sHgY-3N0T_rKQ4sA5_O-hMJ9UKUz6W-borRKAlXW0ZNRZDh5ls1S1l0lmv6tqT1tcOKONaT3SqiHtAsuydTZh-0_fIgXUXA==\"\/><\/figure>\n\n\n\n<p>The payment methods shown to customers during the checkout process are also included on the PaymentIntent. You can include all the payment method that you want from listing them using <code>payment_method_data<\/code> parameter.<\/p>\n\n\n\n<p>The PaymentIntent contains a client secret, a key that\u2019s unique to the individual PaymentIntent. To use the client secret, you must obtain it from the PaymentIntent on your server and pass it to the client side. You can use different approaches to get the client secret to the client side.<\/p>\n\n\n\n<p><strong><em>Demande<\/em><\/strong> <a href=\"\/fr\/api-42631218\/\">Cr\u00e9er un PaymentIntent<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"amount\":1,\n    \"currency\":\"USD\",\n    \"confirm\":true,\n    \"payment_method_options\":{\n        \"card\":{\n            \"request_three_d_secure\":\"auto\"\n        }\n    },\n    \"payment_method_data\":{\n        \"type\":\"card\",\n        \"card\":{\n            \"cvc\":\"123\",\n            \"number\":\"4111111111111111\",\n            \"exp_month\":\"03\",\n            \"exp_year\":\"2027\"\n        }\n    },\n    \"merchant_order_id\":\"id1111\",\n    \"return_url\":\"https:\/\/wooshpay.com\"\n}<\/code><\/pre>\n\n\n\n<p><strong><em>R\u00e9ponse<\/em><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"id\":\"pi_1583366366029676544\",\n    \"object\":\"payment_intent\",\n    \"created\":1666338934000,\n    \"currency\":\"USD\",\n    \"amount\":1,\n    \"status\":\"succeeded\",\n    \"description\":null,\n    \"metadata\":null,\n    \"livemode\":false,\n    \"merchant_order_id\":\"id1111\",\n    \"client_secret\":\"pi_1583366366029676544_secret_WKtUP8YmKmUKxcQPV0Zrmxym\",\n    \"last_payment_error\":null,\n    \"next_action\":\"\",\n    \"payment_method_types\":\"&#91;\\\"card\\\",\\\"alipay\\\",\\\"wechat_pay\\\",\\\"alipayplus\\\",\\\"klarna\\\",\\\"ideal\\\",\\\"giropay\\\",\\\"sofort\\\",\\\"eps\\\",\\\"trustly\\\",\\\"bancontact\\\",\\\"p24\\\",\\\"sepa\\\"]\",\n    \"receipt_email\":null,\n    \"statement_descriptor\":null,\n    \"statement_descriptor_suffix\":null,\n    \"cancel_at\":\"\",\n    \"cancellation_reason\":null,\n    \"confirmation_method\":\"automatic\",\n    \"payment_method_options\":\"{\\\"card\\\":{\\\"request_three_d_secure\\\":\\\"auto\\\",\\\"capture_method\\\":\\\"automatic\\\"}}\",\n    \"3ds_status\":null,\n    \"amount_capturable\":null\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3ds-payment-flow\">3DS payment flow<\/h3>\n\n\n\n<p>Although Europe is phasing it in unevenly, you should prepare your payment flows to be ready for SCA as soon as possible if SCA regulations impact you. The Strong Customer Authentication regulation in Europe requires the use of 3DS for card payments. 3DS is optional in other regions but you can still use it as a tool to reduce fraud.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/kroki.io\/plantuml\/svg\/eNrdlc1u2zAMx-9-Ct6yHdoHyKFokQLDgB26BsMuAQJWYmoCsuRKVIrs6Uf5I7W9dMC223KIY_FD5J8_KbdJMEpuXNXqkw236AU2OUloKAImMDA3OSZ9FAPPDFuKxz4izda_h5DqFk-dRSr9mKsbw2v4FEACqKUpCVt8JjXx1U1aJ_IWQrSajv0hxAaFg6_QCB9RSDdI6iZr2EQq7w99js9e9HviJlWSq5IQHkly9ODpdeFsaeo-e52U-hDDkS3BEzvH_hksCbJLgFrngT06_kFjJ0MP0DUxdjcEXGoh-APHZl4WvLLUYDDaC5FdVyX2ToSaVs4bj83eZan1nU0nG0R6yRzJXu_8IMOFvRQDyWnnYTW678uOwa-6Ji0d2RBYFAQTnKPOBh_u7zcfIUd3vRSyKv0V6ToZ1K14zeU9_1SQimbF-1G9depahNUajOw1aqUQQM3Wkgc-RGyol1i6TsNYz1hjIeaSWgtZ3pYXKvYy9sX0RRRMY6dcKQfQ2sLA4L_nXkV8m_awtDfdUdknMhoN3x6_wEumeFK30oRQTLDzUqPAKWQ9OW3rxpkZ9JATlZ2VOy36cAKtfjE5TCkY1jZtP8Ti0eZoakx0DfORwFnjjQuaearkGr52hb17NHRC1QjsJdep3FPEByA3NeqI_DP9CYsXSFQ8ccl2yq4X35w3KaSN-A1AzYyFJxwFmFE4CBSa1lFZGqPOwG3zU8MySVe9y9H_gtGCo3_EaHYDLO-MvyfsNxSlbAyRLfSEeIYq7UeVVcI62NWimAGf7fQS72H79d5awz2n1uFp6fles91xqm41t_7x_gTta7Cb\" alt=\"\"\/><\/figure>\n\n\n\n<p>For 3DS, typically, you direct the customer to an authentication page on their bank\u2019s website, and they enter a password associated with the card or a code sent to their phone.<\/p>\n\n\n\n<p><strong><em>Demande<\/em><\/strong> <a href=\"\/fr\/api-42631218\/\">Cr\u00e9er un PaymentIntent<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"amount\":1,\n    \"currency\":\"USD\",\n    \"confirm\":true,\n    \"payment_method_options\":{\n        \"card\":{\n            \"request_three_d_secure\":\"any\",\n            \"capture_method\":\"automatic\"\n        }\n    },\n    \"payment_method_data\":{\n        \"type\":\"card\",\n        \"card\":{\n            \"cvc\":\"123\",\n            \"number\":\"4111111111111111\",\n            \"exp_month\":\"03\",\n            \"exp_year\":\"2027\"\n        }\n    },\n    \"merchant_order_id\":\"id1111\",\n    \"return_url\":\"https:\/\/wooshpay.com\"\n}<\/code><\/pre>\n\n\n\n<p><strong><em>R\u00e9ponse<\/em><\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"id\":\"pi_1583367070215569408\",\n    \"object\":\"payment_intent\",\n    \"created\":1666339102000,\n    \"currency\":\"USD\",\n    \"amount\":1,\n    \"status\":\"requires_action\",\n    \"description\":null,\n    \"metadata\":null,\n    \"livemode\":false,\n    \"merchant_order_id\":\"id1111\",\n    \"client_secret\":\"pi_1583367070215569408_secret_gXwuHGXjHgMqVw35oBInuYyC\",\n    \"last_payment_error\":null,\n    \"next_action\":\"{\\\"ddc_redirect\\\":{\\\"return_url\\\":\\\"https:\/\/wooshpay.com\\\",\\\"url\\\":\\\"https:\/\/jstest.wooshpay.com\/v1\/3ds\/index.html?c=2&amp;type=ddc&amp;dataId=pi_1583367070215569408&amp;token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwYXlsb2FkIjp7InJlcXVlc3R0eXBlZGVzY3JpcHRpb25zIjpbIlRIUkVFRFFVRVJZIl0sImV4cGlyeWRhdGUiOiIwMy8yMDI3IiwiY3VycmVuY3lpc28zYSI6IlVTRCIsInNpdGVyZWZlcmVuY2UiOiJ0ZXN0X3N3b29zaHRyYW5zZmVybHRkOTczMjkiLCJiYXNlYW1vdW50IjoiMSIsInBhbiI6IjQxMTExMTExMTExMTExMTEiLCJzZWN1cml0eWNvZGUiOiIxMjMiLCJhY2NvdW50dHlwZWRlc2NyaXB0aW9uIjoiRUNPTSIsIm9yZGVycmVmZXJlbmNlIjoicGlfMTU4MzM2NzA3MDIxNTU2OTQwOCJ9LCJpc3MiOiJqd3RAc3dvb3NodHJhbnNmZXIuY29tIiwiaWF0IjoxNjY2MzM5MTAyfQ.L7CEYYRo95SesCt6WIsXr51MgHZKjkIDfmkooFTaUuo\\\"},\\\"type\\\":\\\"ddc_redirect\\\"}\",\n    \"payment_method_types\":\"&#91;\\\"card\\\",\\\"alipay\\\",\\\"wechat_pay\\\",\\\"alipayplus\\\",\\\"klarna\\\",\\\"ideal\\\",\\\"giropay\\\",\\\"sofort\\\",\\\"eps\\\",\\\"trustly\\\",\\\"bancontact\\\",\\\"p24\\\",\\\"sepa\\\"]\",\n    \"receipt_email\":null,\n    \"statement_descriptor\":null,\n    \"statement_descriptor_suffix\":null,\n    \"cancel_at\":\"\",\n    \"cancellation_reason\":null,\n    \"confirmation_method\":\"automatic\",\n    \"payment_method_options\":\"{\\\"card\\\":{\\\"request_three_d_secure\\\":\\\"any\\\",\\\"capture_method\\\":\\\"automatic\\\"}}\",\n    \"3ds_status\":null,\n    \"amount_capturable\":null\n}<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-controlling-when-to-present-the-3d-secure-flow\">Controlling when to present the 3D Secure flow<\/h2>\n\n\n\n<p>WooshPay triggers 3DS automatically if required by a regulatory mandate such as Strong Customer Authentication. When you run 3D Secure, WooshPay requires your customer to perform authentication to complete the payment if 3DS authentication is available for a card.<\/p>\n\n\n\n<p>If a card doesn\u2019t support 3DS or an error occurs during the authentication process, the payment proceeds normally. When this occurs, liability doesn\u2019t generally shift to the issuer, as a successful 3DS authentication hasn\u2019t taken place.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>auto<\/code><br>The default parameter for 3DS is <code>auto<\/code>, WooshPay&#8217;s risk control will determine to do 3DS or not. To trigger 3DS manually, set <code>payment_method_options[card][request_three_d_secure]<\/code> to any when creating or confirming a PaymentIntent or SetupIntent.<\/li>\n\n\n\n<li><code>any<\/code><br>When you set <code>request_three_d_secure<\/code> \u00e0 <code>any<\/code>, WooshPay requires your customer to perform authentication to complete the payment successfully if 3DS authentication is available for a card. If it\u2019s not available for the given card, the payment proceeds normally.<\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>Ensure PCI compliance for card as payment method. Anyone involved with the processing, transmission, or storage of card data must comply with the Payment Card Industry Data Security Standards (PCI DSS). PCI compliance is a shared responsibility and applies to both WooshPay and your business. When accepting payments, you must do so in a PCI [&hellip;]<\/p>","protected":false},"author":6,"featured_media":11946,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","footnotes":""},"doc_category":[315],"doc_tag":[325,324,319],"class_list":["post-11944","docs","type-docs","status-publish","has-post-thumbnail","hentry","doc_category-online-payments","doc_tag-3d-secure","doc_tag-open-api","doc_tag-payment-flow"],"year_month":"2026-04","word_count":973,"total_views":"2281","reactions":{"happy":"0","normal":"0","sad":"0"},"author_info":{"name":"zhaozixu","author_nicename":"zhaozixu","author_url":"https:\/\/wooshpay.com\/fr\/author\/zhaozixu\/"},"doc_category_info":[{"term_name":"Online Payments","term_url":"https:\/\/wooshpay.com\/fr\/docs-category\/paiements-en-ligne\/"}],"doc_tag_info":[{"term_name":"3D secure","term_url":"https:\/\/wooshpay.com\/fr\/docs-tag\/3d-secure\/"},{"term_name":"open api","term_url":"https:\/\/wooshpay.com\/fr\/docs-tag\/open-api\/"},{"term_name":"Payment Flow","term_url":"https:\/\/wooshpay.com\/fr\/docs-tag\/payment-flow\/"}],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.8 (Yoast SEO v24.9) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WooshPay Direct API - WooshPay<\/title>\n<meta name=\"description\" content=\"Use the Payment Intents API together with the Setup Intents and Payment Methods APIs. These APIs help you handle dynamic payments (for example, additional authentication like 3D Secure) and prepare you for expansion to other countries while allowing you to support new regulations and regional payment methods.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wooshpay.com\/fr\/docs\/wooshpay-direct-api\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WooshPay Direct API\" \/>\n<meta property=\"og:description\" content=\"Use the Payment Intents API together with the Setup Intents and Payment Methods APIs. These APIs help you handle dynamic payments (for example, additional authentication like 3D Secure) and prepare you for expansion to other countries while allowing you to support new regulations and regional payment methods.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wooshpay.com\/fr\/docs\/wooshpay-direct-api\/\" \/>\n<meta property=\"og:site_name\" content=\"WooshPay\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-09T07:32:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1916\" \/>\n\t<meta property=\"og:image:height\" content=\"1044\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/\",\"url\":\"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/\",\"name\":\"WooshPay Direct API - WooshPay\",\"isPartOf\":{\"@id\":\"https:\/\/www.wooshpay.com\/zh\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png\",\"datePublished\":\"2023-08-05T08:38:51+00:00\",\"dateModified\":\"2023-08-09T07:32:21+00:00\",\"description\":\"Use the Payment Intents API together with the Setup Intents and Payment Methods APIs. These APIs help you handle dynamic payments (for example, additional authentication like 3D Secure) and prepare you for expansion to other countries while allowing you to support new regulations and regional payment methods.\",\"breadcrumb\":{\"@id\":\"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#primaryimage\",\"url\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png\",\"contentUrl\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png\",\"width\":1916,\"height\":1044,\"caption\":\"3ds flow\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.wooshpay.com\/zh\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Docs\",\"item\":\"https:\/\/wooshpay.com\/fr\/docs\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"WooshPay Direct API\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.wooshpay.com\/zh\/#website\",\"url\":\"https:\/\/www.wooshpay.com\/zh\/\",\"name\":\"WooshPay\",\"description\":\"One-stop payment platform\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.wooshpay.com\/zh\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"WooshPay Direct API - WooshPay","description":"Use the Payment Intents API together with the Setup Intents and Payment Methods APIs. These APIs help you handle dynamic payments (for example, additional authentication like 3D Secure) and prepare you for expansion to other countries while allowing you to support new regulations and regional payment methods.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wooshpay.com\/fr\/docs\/wooshpay-direct-api\/","og_locale":"fr_FR","og_type":"article","og_title":"WooshPay Direct API","og_description":"Use the Payment Intents API together with the Setup Intents and Payment Methods APIs. These APIs help you handle dynamic payments (for example, additional authentication like 3D Secure) and prepare you for expansion to other countries while allowing you to support new regulations and regional payment methods.","og_url":"https:\/\/wooshpay.com\/fr\/docs\/wooshpay-direct-api\/","og_site_name":"WooshPay","article_modified_time":"2023-08-09T07:32:21+00:00","og_image":[{"width":1916,"height":1044,"url":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/","url":"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/","name":"WooshPay Direct API - WooshPay","isPartOf":{"@id":"https:\/\/www.wooshpay.com\/zh\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#primaryimage"},"image":{"@id":"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#primaryimage"},"thumbnailUrl":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png","datePublished":"2023-08-05T08:38:51+00:00","dateModified":"2023-08-09T07:32:21+00:00","description":"Use the Payment Intents API together with the Setup Intents and Payment Methods APIs. These APIs help you handle dynamic payments (for example, additional authentication like 3D Secure) and prepare you for expansion to other countries while allowing you to support new regulations and regional payment methods.","breadcrumb":{"@id":"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#primaryimage","url":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png","contentUrl":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png","width":1916,"height":1044,"caption":"3ds flow"},{"@type":"BreadcrumbList","@id":"https:\/\/wooshpay.com\/zh\/docs\/wooshpay-direct-api\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.wooshpay.com\/zh\/"},{"@type":"ListItem","position":2,"name":"Docs","item":"https:\/\/wooshpay.com\/fr\/docs\/"},{"@type":"ListItem","position":3,"name":"WooshPay Direct API"}]},{"@type":"WebSite","@id":"https:\/\/www.wooshpay.com\/zh\/#website","url":"https:\/\/www.wooshpay.com\/zh\/","name":"WooshPay","description":"Plate-forme de paiement unique","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wooshpay.com\/zh\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"}]}},"uagb_featured_image_src":{"full":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png",1916,1044,false],"thumbnail":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow-150x150.png",150,150,true],"medium":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow-300x163.png",300,163,true],"medium_large":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow-768x418.png",768,418,true],"large":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow-1024x558.png",1024,558,true],"1536x1536":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow-1536x837.png",1536,837,true],"2048x2048":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow.png",1916,1044,false],"trp-custom-language-flag":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/3ds-flow-18x10.png",18,10,true]},"uagb_author_info":{"display_name":"zhaozixu","author_link":"https:\/\/wooshpay.com\/fr\/author\/zhaozixu\/"},"uagb_comment_info":0,"uagb_excerpt":"Ensure PCI compliance for card as payment method. Anyone involved with the processing, transmission, or storage of card data must comply with the Payment Card Industry Data Security Standards (PCI DSS). PCI compliance is a shared responsibility and applies to both WooshPay and your business. When accepting payments, you must do so in a PCI\u2026","_links":{"self":[{"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/docs\/11944","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/comments?post=11944"}],"version-history":[{"count":0,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/docs\/11944\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/media\/11946"}],"wp:attachment":[{"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/media?parent=11944"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/doc_category?post=11944"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/doc_tag?post=11944"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}