{"id":12075,"date":"2023-08-08T12:32:03","date_gmt":"2023-08-08T12:32:03","guid":{"rendered":"https:\/\/wooshpay.com\/?post_type=docs&#038;p=12075"},"modified":"2023-08-08T12:32:04","modified_gmt":"2023-08-08T12:32:04","password":"","slug":"giropay","status":"publish","type":"docs","link":"https:\/\/wooshpay.com\/fr\/docs\/giropay\/","title":{"rendered":"Giropay"},"content":{"rendered":"<p><strong>Giropay est un syst\u00e8me interbancaire, introduit par<\/strong> <strong>les<\/strong> <strong>Les banques allemandes l'ont adopt\u00e9 en 2005 comme mode de paiement officiel pour les services bancaires en ligne. Il est accessible \u00e0 plus de 40 millions d'acheteurs et repr\u00e9sente 16% de toutes les transactions en ligne en Allemagne.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-features\"><strong>Caract\u00e9ristiques<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Codes pays disponibles<\/th><th>DE<\/th><\/tr><\/thead><tbody><tr><td>Traitement des devises<\/td><td>EUR<\/td><\/tr><tr><td>Devises de r\u00e8glement<\/td><td>EUR<\/td><\/tr><tr><td>Montant minimum de la transaction<\/td><td>1.00 EUR<\/td><\/tr><tr><td>Montant maximum de la transaction<\/td><td>Aucune limite.<br>Jusqu'\u00e0 10 000 EUR - paiement garanti*<br>Plus de 10 000 EUR - paiement non garanti<\/td><\/tr><tr><td>Remboursements<\/td><td>\u2705<\/td><\/tr><tr><td>Remboursements partiels<\/td><td>\u2705<\/td><\/tr><tr><td>Remboursement partiel multiple<\/td><td>\u2705<\/td><\/tr><tr><td>R\u00e9p\u00e9tition de la dette<\/td><td>\u274c<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>*giropay garantit contractuellement le paiement jusqu'\u00e0 6 semaines apr\u00e8s la transaction initiale.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-integration-method\"><strong>M\u00e9thode d'int\u00e9gration<\/strong><\/h2>\n\n\n\n<p><strong>Valeurs de l'\u00e9num\u00e9ration des m\u00e9thodes de paiement :<\/strong> <code>giropay<\/code><\/p>\n\n\n\n<p><strong>Il existe une m\u00e9thode d'int\u00e9gration pour Giropay<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>API directe<\/li>\n\n\n\n<li>Sortie de caisse<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-direct-api\"><strong>Direct<\/strong> <strong>API<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-how-to-integration\"><strong>Comment s'int\u00e9grer<\/strong><\/h3>\n\n\n\n<p>Pour une int\u00e9gration API directe, vous pouvez cr\u00e9er un PaymentIntent et obtenir l'url en une seule \u00e9tape. Voici la d\u00e9monstration de la cr\u00e9ation d'une intention de paiement :<\/p>\n\n\n\n<p><a href=\"\/fr\/api-42631218\/\"><strong>Cr\u00e9er un PaymentIntent<\/strong><\/a><\/p>\n\n\n\n<p>Un PaymentIntent est un objet qui repr\u00e9sente votre intention d'encaisser le paiement de votre client et qui suit le cycle de vie du processus de paiement. Cr\u00e9ez un PaymentIntent sur votre serveur et indiquez le montant \u00e0 encaisser ainsi qu'une devise prise en charge. Si vous disposez d'une int\u00e9gration Payment Intents existante, ajoutez <strong>giropay<\/strong> \u00e0 la liste des types de m\u00e9thodes de paiement.<\/p>\n\n\n\n<p>Veuillez noter que pour ce mode de paiement, vous devez sp\u00e9cifier le pays en <code>billing_details.address<\/code> comme l'Allemagne, quel est l'indicatif de pays <code>DE<\/code>.<\/p>\n\n\n\n<p><strong><em>Demande<\/em><\/strong> Cr\u00e9er un PaymentIntent<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"montant\" : 2000,\n    \"devise\" : \"EUR\",\n    \"confirm\" : true,\n    \"payment_method_data\" : {\n        \"type\" : \"giropay\",\n        \"billing_details\" : {\n            \"address\" : {\n                \"country\" : \"DE\"\n            },\n            \"pr\u00e9nom\" : \"\",\n            \"lastName\" : \"\"\n        }\n    },\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_1670644604036186112\",\n    \"object\" : \"payment_intent\",\n    \"created\" : 1687147687000,\n    \"livemode\" : false,\n    \"currency\" : \"EUR\",\n    \"montant\" : 2000,\n    \"status\" : \"requires_action\",\n    \"client_secret\": \"pi_1670644604036186112_secret_9UHXdOLAE1WV7A1UCIjH8nMP\",\n    \"next_action\" : {\n        \"type\" : \"redirect_to_url\",\n        \"giropay_handle_redirect\" : {\n            \"url\" : \"https:\/\/r3.girogate.de\/ti\/simgiropay?tx=2090827518&amp;rs=33tiT9GdES3vl4zIQ4ShK4Sw3NsvymQj&amp;cs=0981d204f358af0d05ea4aa49a2b678fbe36aa4f13af2624441385921431f7a6\"\n        }\n    },\n    \"payment_method_types\" : [\n        \"giropay\"\n    ],\n    \"confirmation_method\" : \"automatique\",\n    \"return_url\" : \"https:\/\/wooshpay.com\",\n    \"payment_method\" : \"pm_1670644603939717120\",\n    \"capture_method\" : \"automatic\"\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-checkout\"><strong>Sortie de caisse<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-payment-flow\">Flux de paiement<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Le client s\u00e9lectionne Giropay dans la liste des m\u00e9thodes de paiement disponibles et clique sur le bouton Payer.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/api.apifox.cn\/api\/v1\/projects\/1296482\/resources\/391507\/image-preview\" alt=\"\u4e0b\u8f7d.png\"\/><\/figure>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li>Les clients seront redirig\u00e9s vers la page de Giropay.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/api.apifox.cn\/api\/v1\/projects\/1296482\/resources\/391508\/image-preview\" alt=\"\u4e0b\u8f7d (1).png\"\/><\/figure>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li>Les clients choisissent leur banque et approuvent le paiement via la banque en ligne.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/api.apifox.cn\/api\/v1\/projects\/1296482\/resources\/391509\/image-preview\" alt=\"\u4e0b\u8f7d (2).png\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/api.apifox.cn\/api\/v1\/projects\/1296482\/resources\/391511\/image-preview\" alt=\"\u4e0b\u8f7d (3).png\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-create-a-seesion\">Cr\u00e9er une session<\/h3>\n\n\n\n<p><strong><em>Demande<\/em><\/strong> <a href=\"\/fr\/api-42654181\/\">Cr\u00e9er une session<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"cancel_url\" : \"www.wooshpay.com\",\n    \"mode\" : \"paiement\",\n    \"success_url\" : \"https:\/\/wooshpay.com\/\",\n    \"payment_method_types\" : [\n        \"giropay\"\n    ],\n    \"line_items\" : [\n        {\n            \"price_data\" : {\n                \"currency\" : \"EUR\",\n                \"produit\" : null,\n                \"unit_amount\" : 2000,\n                \"product_data\" : {\n                    \"name\" : \"pomme\"\n                },\n                \"billing_scheme\" : \"testscheme\",\n                \"lookup_key\" : \"test_lookup_key\"\n            },\n            \"quantity\" : 1\n        }\n    ]\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\" : \"cs_1680883889586831360\",\n    \"object\" : \"checkout.session\",\n    \"created\" : 1689588923000,\n    \"livemode\" : false,\n    \"currency\" : \"EUR\",\n    \"client\" : \"\",\n    \"mode\" : \"paiement\",\n    \"status\" : \"ouvert\",\n    \"url\" : \"https:\/\/checkouttest.wooshpay.com\/pay\/cs_test_1680883889586831360?key=pk_test_NTE2Njk1Mjk1ODMxNjAwMDQ2MDkxOmVqUkVxaWdMOVNQSGpRdmV0ZXUxZFBmcTE2ODY4ODE4NDY0MTg\",\n    \"cancel_url\" : \"www.wooshpay.com\",\n    \"line_items\" : {\n        \"object\" : \"liste\",\n        \"data\" : [\n            {\n                \"id\" : \"li_1680883889620385792\",\n                \"objet\" : \"item\",\n                \"currency\" : \"EUR\",\n                \"description\" : \"pomme\",\n                \"prix\" : {\n                    \"id\" : \"price_1680883889632968704\",\n                    \"objet\" : \"prix\",\n                    \"created\" : 1689588923000,\n                    \"livemode\" : false,\n                    \"active\" : false,\n                    \"currency\" : \"EUR\",\n                    \"produit\" : {\n                        \"id\" : \"prod_1680883889641357312\",\n                        \"objet\" : \"produit\",\n                        \"created\" : 1689588923000,\n                        \"livemode\" : false,\n                        \"active\" : false,\n                        \"name\" : \"apple\",\n                        \"updated\" : 1689588923000\n                    },\n                    \"type\" : \"one_time\",\n                    \"unit_amount\" : 2000,\n                    \"billing_scheme\" : \"per_unit\",\n                    \"lookup_key\" : \"test_lookup_key\"\n                },\n                \"quantity\" : 1,\n                \"amount_subtotal\" : 2000,\n                \"amount_total\" : 2000\n            }\n        ]\n    },\n    \"payment_intent\" : \"pi_1680883889804935168\",\n    \"payment_method_types\" : [\n        \"giropay\"\n    ],\n    \"payment_status\" : \"non pay\u00e9\",\n    \"success_url\" : \"https:\/\/wooshpay.com\/\",\n    \"amount_subtotal\" : 2000,\n    \"amount_total\" : 2000,\n    \"billing_address_collection\" : \"auto\",\n    \"expires_at\" : 1689675323250,\n    \"payment_link\" : \"\",\n    \"client_secret\": \"pi_1680883889804935168_secret_oOaiHu8k190zNlX9zeIV5xkl\"\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-next-step\"><strong>Prochaine \u00e9tape<\/strong><\/h2>\n\n\n\n<p>Vous pouvez ajouter d'autres fonctionnalit\u00e9s \u00e0 votre int\u00e9gration en fonction de vos besoins.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-create-a-webhook\"><a href=\"http:\/\/doc-2517709\" rel=\"sponsored nofollow\">Cr\u00e9er un Webhook<\/a><\/h2>\n\n\n\n<p>\u00c9coutez les \u00e9v\u00e9nements sur votre compte WooshPay afin que votre int\u00e9gration puisse d\u00e9clencher automatiquement des r\u00e9actions. Cr\u00e9ez un webhook qui se concentre principalement sur enabled_events et url.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-create-a-refund\"><a href=\"\/fr\/api-51369554\/\">Cr\u00e9er un remboursement<\/a><\/h2>\n\n\n\n<p>Cr\u00e9ez un remboursement pour restituer des fonds \u00e0 votre client. Vous pouvez \u00e9galement effectuer des remboursements partiels, mais ils ne sont pas pris en charge par toutes les m\u00e9thodes de paiement. Un remboursement partiel consiste \u00e0 ne rembourser qu'une partie du montant de la transaction initiale.<\/p>","protected":false},"excerpt":{"rendered":"<p>Giropay is an interbank system, introduced by the German banks in 2005 as the official payment method for online banking. It is accessible by more than 40 million shoppers and accounts for 16% of all online transactions in Germany. Features Available country codes DE Processing currencies EUR Settlement currencies EUR Minimum transaction amount 1.00 EUR [&hellip;]<\/p>","protected":false},"author":1,"featured_media":17289,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","footnotes":""},"doc_category":[395],"doc_tag":[405,324,323,319],"class_list":["post-12075","docs","type-docs","status-publish","has-post-thumbnail","hentry","doc_category-add-more-payment-methods","doc_tag-giropay","doc_tag-open-api","doc_tag-payment","doc_tag-payment-flow"],"year_month":"2026-04","word_count":614,"total_views":"2261","reactions":{"happy":"0","normal":"0","sad":"0"},"author_info":{"name":"wooshpaysite\u7ba1\u7406\u5458","author_nicename":"wooshpaysiteadmin","author_url":"https:\/\/wooshpay.com\/fr\/author\/wooshpaysiteadmin\/"},"doc_category_info":[{"term_name":"Add more payment methods","term_url":"https:\/\/wooshpay.com\/fr\/docs-category\/add-more-payment-methods\/"}],"doc_tag_info":[{"term_name":"Giropay","term_url":"https:\/\/wooshpay.com\/fr\/docs-tag\/giropay\/"},{"term_name":"open api","term_url":"https:\/\/wooshpay.com\/fr\/docs-tag\/open-api\/"},{"term_name":"payment","term_url":"https:\/\/wooshpay.com\/fr\/docs-tag\/payment\/"},{"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>Giropay - WooshPay<\/title>\n<meta name=\"description\" content=\"Giropay is an interbank system, introduced by the German banks in 2005 as the official payment method for online banking. It is accessible by more than 40 million shoppers and accounts for 16% of all online transactions in Germany.\" \/>\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\/giropay\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Giropay\" \/>\n<meta property=\"og:description\" content=\"Giropay is an interbank system, introduced by the German banks in 2005 as the official payment method for online banking. It is accessible by more than 40 million shoppers and accounts for 16% of all online transactions in Germany.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wooshpay.com\/fr\/docs\/giropay\/\" \/>\n<meta property=\"og:site_name\" content=\"WooshPay\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-08T12:32:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2138\" \/>\n\t<meta property=\"og:image:height\" content=\"1438\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wooshpay.com\/es\/docs\/giropay\/\",\"url\":\"https:\/\/wooshpay.com\/es\/docs\/giropay\/\",\"name\":\"Giropay - WooshPay\",\"isPartOf\":{\"@id\":\"https:\/\/www.wooshpay.com\/zh\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wooshpay.com\/es\/docs\/giropay\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wooshpay.com\/es\/docs\/giropay\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2.png\",\"datePublished\":\"2023-08-08T12:32:03+00:00\",\"dateModified\":\"2023-08-08T12:32:04+00:00\",\"description\":\"Giropay is an interbank system, introduced by the German banks in 2005 as the official payment method for online banking. It is accessible by more than 40 million shoppers and accounts for 16% of all online transactions in Germany.\",\"breadcrumb\":{\"@id\":\"https:\/\/wooshpay.com\/es\/docs\/giropay\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wooshpay.com\/es\/docs\/giropay\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/wooshpay.com\/es\/docs\/giropay\/#primaryimage\",\"url\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2.png\",\"contentUrl\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2.png\",\"width\":2138,\"height\":1438},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wooshpay.com\/es\/docs\/giropay\/#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\":\"Giropay\"}]},{\"@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":"Giropay - WooshPay","description":"Giropay est un syst\u00e8me interbancaire, introduit par les banques allemandes en 2005 comme m\u00e9thode de paiement officielle pour les services bancaires en ligne. Il est accessible \u00e0 plus de 40 millions d'acheteurs et repr\u00e9sente 16% de toutes les transactions en ligne en Allemagne.","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\/giropay\/","og_locale":"fr_FR","og_type":"article","og_title":"Giropay","og_description":"Giropay is an interbank system, introduced by the German banks in 2005 as the official payment method for online banking. It is accessible by more than 40 million shoppers and accounts for 16% of all online transactions in Germany.","og_url":"https:\/\/wooshpay.com\/fr\/docs\/giropay\/","og_site_name":"WooshPay","article_modified_time":"2023-08-08T12:32:04+00:00","og_image":[{"width":2138,"height":1438,"url":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wooshpay.com\/es\/docs\/giropay\/","url":"https:\/\/wooshpay.com\/es\/docs\/giropay\/","name":"Giropay - WooshPay","isPartOf":{"@id":"https:\/\/www.wooshpay.com\/zh\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wooshpay.com\/es\/docs\/giropay\/#primaryimage"},"image":{"@id":"https:\/\/wooshpay.com\/es\/docs\/giropay\/#primaryimage"},"thumbnailUrl":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2.png","datePublished":"2023-08-08T12:32:03+00:00","dateModified":"2023-08-08T12:32:04+00:00","description":"Giropay est un syst\u00e8me interbancaire, introduit par les banques allemandes en 2005 comme m\u00e9thode de paiement officielle pour les services bancaires en ligne. Il est accessible \u00e0 plus de 40 millions d'acheteurs et repr\u00e9sente 16% de toutes les transactions en ligne en Allemagne.","breadcrumb":{"@id":"https:\/\/wooshpay.com\/es\/docs\/giropay\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wooshpay.com\/es\/docs\/giropay\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/wooshpay.com\/es\/docs\/giropay\/#primaryimage","url":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2.png","contentUrl":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2.png","width":2138,"height":1438},{"@type":"BreadcrumbList","@id":"https:\/\/wooshpay.com\/es\/docs\/giropay\/#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":"Giropay"}]},{"@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\/2024\/07\/pic_home_new-2.png",2138,1438,false],"thumbnail":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2-150x150.png",150,150,true],"medium":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2-300x202.png",300,202,true],"medium_large":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2-768x517.png",768,517,true],"large":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2-1024x689.png",1024,689,true],"1536x1536":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2-1536x1033.png",1536,1033,true],"2048x2048":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2-2048x1377.png",2048,1377,true],"trp-custom-language-flag":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2024\/07\/pic_home_new-2-18x12.png",18,12,true]},"uagb_author_info":{"display_name":"wooshpaysite\u7ba1\u7406\u5458","author_link":"https:\/\/wooshpay.com\/fr\/author\/wooshpaysiteadmin\/"},"uagb_comment_info":0,"uagb_excerpt":"Giropay is an interbank system, introduced by the German banks in 2005 as the official payment method for online banking. It is accessible by more than 40 million shoppers and accounts for 16% of all online transactions in Germany. Features Available country codes DE Processing currencies EUR Settlement currencies EUR Minimum transaction amount 1.00 EUR\u2026","_links":{"self":[{"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/docs\/12075","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/comments?post=12075"}],"version-history":[{"count":0,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/docs\/12075\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/media\/17289"}],"wp:attachment":[{"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/media?parent=12075"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/doc_category?post=12075"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/wooshpay.com\/fr\/wp-json\/wp\/v2\/doc_tag?post=12075"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}