{"id":11949,"date":"2023-08-05T08:47:44","date_gmt":"2023-08-05T08:47:44","guid":{"rendered":"https:\/\/wooshpay.com\/?post_type=docs&#038;p=11949"},"modified":"2023-08-05T08:47:45","modified_gmt":"2023-08-05T08:47:45","password":"","slug":"payment-link","status":"publish","type":"docs","link":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/docs\/payment-link\/","title":{"rendered":"Collegamento di pagamento"},"content":{"rendered":"<h2 class=\"wp-block-heading\" id=\"h-introduction\">Introduzione<\/h2>\n\n\n\n<p>Accept payments without building a digital storefront.<\/p>\n\n\n\n<p>There are two methods to create payment links:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Create a payment link using the Dashboard without requiring any coding.<\/li>\n\n\n\n<li>Create a payment link programmatically with the direct API<\/li>\n<\/ol>\n\n\n\n<p>To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/api.apifox.cn\/api\/v1\/projects\/1296482\/resources\/364557\/image-preview\" alt=\"wooshpay checkout\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-create-a-payment-link-with-the-dashboard\">Create a payment link with the Dashboard<\/h2>\n\n\n\n<p>Create a custom payment page without using code.<\/p>\n\n\n\n<p>Use the Wooshpay Dashboard to create a payment link that you can share with your customers. Customers who open this link are redirected to <a href=\"https:\/\/wooshpay.com\/docs\/wooshpay-checkout\/\">Cassa Wooshpay <\/a>page.<\/p>\n\n\n\n<p>Here are the step-by-step instructions to create a payment link with the Dashboard<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Click &#8220;+ New payment link&#8221;<\/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\/385930\/image-preview\" alt=\"86e14872-dfaf-45aa-af4f-e7fc4cb425cb.png\"\/><\/figure>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li>Select product and quantity.<\/li>\n\n\n\n<li>Click on &#8220;Create payment link&#8221;<\/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\/385815\/image-preview\" alt=\"d626e72f-d420-4176-a4b7-9369906a2e2b.png\"\/><\/figure>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li>Copy the payment link and share it with your customers.<\/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\/385816\/image-preview\" alt=\"707c62d0-7411-4343-941f-b6107531f70d.png\"\/><\/figure>\n\n\n\n<p>After that, you can share the link with your customers to complete payment.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-create-a-payment-link-with-the-api\">Create a payment link with the API<\/h2>\n\n\n\n<p>Create a custom payment page with the API and share a link to it. Payment Links supports many payment methods\u2014including <a href=\"https:\/\/wooshpay.com\/visa\/\">credit and debit cards<\/a>, <a href=\"https:\/\/wooshpay.com\/alipay\/\">Alipay<\/a>, <a href=\"https:\/\/wooshpay.com\/wechat-pay\/\">Wechat<\/a> Pay, <a href=\"https:\/\/wooshpay.com\/dana\/\">DANA<\/a> e <a href=\"https:\/\/wooshpay.com\/klarna\/\">Klarna<\/a>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Payment Links uses Products and Prices to model what your business is selling.<\/p>\n\n\n\n<p>To get started with Payment Links, you first need to create a product, and then use that product to create a price<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-create-a-product\">Create a product<\/h3>\n\n\n\n<p>Products describe the specific goods or services you offer to your customers, each product has a unique ID. For instance: If you\u2019re an e-commerce store selling clothing, one of your products might be a sweater.<\/p>\n\n\n\n<p><strong>Richiesta<\/strong> <a href=\"\/it\/api-34903706\/\">Creare un prodotto<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"name\":\"taiwan fengli\",\n    \"active\":true,\n    \"description\":\"very delicious\",\n    \"metadata\":{\n        \"key1\":\"value1\",\n        \"key3\":\"value3\"\n    },\n    \"url\":\"www.baide.com\"\n}<\/code><\/pre>\n\n\n\n<p><strong>Risposta<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"id\": \"prod_1554351292598452224\",\n    \"object\": \"product\",\n    \"created\": 1665642282000,\n    \"active\": true,\n    \"description\": \"very delicious\",\n    \"metadata\": {\n        \"key1\": \"value1\",\n        \"key2\": \"value2\"\n    },\n    \"name\": \"taiwan fengli\",\n    \"livemode\": false,\n    \"url\": \"www.baide.com\",\n    \"updated\": 1665642282000,\n    \"images\": 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-create-a-price\">Create a price<\/h3>\n\n\n\n<p>Price can be attach to existed product, and can also be created when create a<br>new product.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-attach-price-to-exisited-product\">Attach price to exisited product<\/h4>\n\n\n\n<p><strong>Richiesta<\/strong> <a href=\"\/it\/api-55501373\/\">Attach price to exisited product<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"currency\":\"GBP\",\n    \"product\":\"prod_1554351292598452224\",\n    \"unit_amount\":5,\n    \"active\":true,\n    \"metadata\":{\n        \"key1\":\"value1\",\n        \"key2\":\"value2\"\n    },\n    \"nickname\":\"fengli\",\n    \"product_data\":null,\n    \"billing_scheme\":\"testscheme\",\n    \"lookup_key\":\"test_lookup_key\"\n}<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-create-price-when-create-a-new-product\">Create price when create a new product<\/h4>\n\n\n\n<p><strong>Richiesta<\/strong> <a href=\"\/it\/api-58484530\/\">Create price when create a new product<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"currency\":\"GBP\",\n    \"product\":null,\n    \"unit_amount\":5,\n    \"active\":true,\n    \"metadata\":{\n        \"key1\":\"value1\",\n        \"key2\":\"value2\"\n    },\n    \"nickname\":\"fengli\",\n    \"product_data\":{\n        \"id\":null,\n        \"name\":\"taiwan fengli\",\n        \"active\":true,\n        \"description\":\"very delicious\",\n        \"metadata\":{\n            \"key1\":\"value1\",\n            \"key2\":\"value2\"\n        },\n        \"url\":\"www.baide.com\"\n    },\n    \"billing_scheme\":\"testscheme\",\n    \"lookup_key\":\"test_lookup_key\"\n}<\/code><\/pre>\n\n\n\n<p><strong>Risposta<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"id\":\"price_1554384814788837376\",\n    \"object\":\"price\",\n    \"created\":1659429194000,\n    \"active\":true,\n    \"currency\":\"GBP\",\n    \"metadata\":{\n        \"key1\":\"value1\",\n        \"key2\":\"value2\"\n    },\n    \"nickname\":\"fengli\",\n    \"product\":{\n        \"id\":\"prod_1554351292598452224\",\n        \"object\":\"product\",\n        \"created\":1659421201000,\n        \"active\":true,\n        \"description\":\"very delicious\",\n        \"metadata\":{\n            \"key1\":\"value1\",\n            \"key3\":\"value3\"\n        },\n        \"name\":\"taiwan fengli\",\n        \"livemode\":false,\n        \"url\":\"www.baide.com\",\n        \"updated\":1659422039000\n    },\n    \"type\":\"one_time\",\n    \"livemode\":false,\n    \"unit_amount\":5,\n    \"billing_scheme\":\"per_unit\",\n    \"lookup_key\":\"test_lookup_key\"\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-create-a-payment-link\">Create a payment link<\/h3>\n\n\n\n<p>To create a payment link, pass in <code>voci_di_linea<\/code>.<\/p>\n\n\n\n<p>Each line item contains a <code>prezzo<\/code> e <code>quantity<\/code>.<\/p>\n\n\n\n<p><strong>Richiesta<\/strong> <a href=\"\/it\/api-57534157\/\">Create a payment link<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"line_items\":&#91;\n        {\n            \"price\":\"price_1559884567408541696\",\n            \"quantity\":2\n        }\n    ],\n    \"billing_address_collection\":\"required\",\n    \"after_completion\":{\n        \"hosted_confirmation\":{\n            \"custom_message\":\"Payment Success\"\n        },\n        \"type\":\"hosted_confirmation\"\n    },\n    \"phone_number_collection\":{\n        \"enabled\":true\n    },\n    \"shipping_address_collection\":{\n        \"allowed_countries\":&#91;\n            \"CN\",\n            \"HK\",\n            \"GB\"\n        ]\n    },\n    \"metadata\":{\n        \"key1\":\"value1\",\n        \"key2\":\"value2\"\n    }\n}<\/code><\/pre>\n\n\n\n<p><strong>Risposta<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>{\n    \"id\": \"plink_1613796597081047040\",\n    \"object\": \"payment_link\",\n    \"created\": 1673594067000,\n    \"active\": true,\n    \"metadata\": {\n        \"key1\": \"value1\",\n        \"key2\": \"value2\"\n    },\n    \"url\": \"https:\/\/buytest.wooshpay.com\/test_plink_1613796597081047040_secret_mWnkKBC8hUmrwKEV0HZtJ1KX\",\n    \"livemode\": false,\n    \"line_items\": {\n        \"object\": \"list\",\n        \"data\": &#91;\n            {\n                \"id\": \"li_1613796598972678144\",\n                \"object\": \"item\",\n                \"currency\": \"CNY\",\n                \"description\": \"good product\",\n                \"price\": {\n                    \"id\": \"price_1559884567408541696\",\n                    \"object\": \"price\",\n                    \"created\": 1660740437000,\n                    \"active\": true,\n                    \"currency\": \"CNY\",\n                    \"metadata\": {\n                        \"key1\": \"value1\",\n                        \"key2\": \"value2\"\n                    },\n                    \"nickname\": \"low price\",\n                    \"product\": {\n                        \"id\": \"prod_1559883789331595264\",\n                        \"object\": \"product\",\n                        \"created\": 1660740251000,\n                        \"active\": true,\n                        \"description\": \"very good\",\n                        \"metadata\": {\n                            \"key1\": \"value1\",\n                            \"key2\": \"value2\"\n                        },\n                        \"name\": \"good product\",\n                        \"livemode\": false,\n                        \"url\": \"www.baide.com\",\n                        \"updated\": 1660740251000,\n                        \"images\": &#91;\n                            \"https:\/\/oss.swooshtransfer.cn\/oa\/product\/1559882985845555200_X6zNPOJ5ahw545XcCJhSlARR.png\"\n                        ]\n                    },\n                    \"type\": \"one_time\",\n                    \"livemode\": false,\n                    \"unit_amount\": 200,\n                    \"billing_scheme\": \"per_unit\",\n                    \"lookup_key\": \"test_lookup_key\"\n                },\n                \"quantity\": 2,\n                \"amount_subtotal\": 400,\n                \"amount_total\": 400\n            }\n        ],\n        \"url\": null,\n        \"has_more\": false\n    },\n    \"after_completion\": {\n        \"redirect\": null,\n        \"type\": \"hosted_confirmation\",\n        \"hosted_confirmation\": {\n            \"custom_message\": \"Payment Success\"\n        }\n    },\n    \"billing_address_collection\": \"required\",\n    \"phone_number_collection\": {\n        \"enabled\": true\n    },\n    \"shipping_address_collection\": {\n        \"allowed_countries\": &#91;\n            \"CN\",\n            \"HK\",\n            \"GB\"\n        ]\n    }\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-share-your-payment-link\">Share your payment link<\/h3>\n\n\n\n<p>Each payment link contains a url that you can share with your customers through email, message etc., on social media, with a website link, in an app, or through other channels.<\/p>\n\n\n\n<p>You can paste or embed the link anywhere. The same payment link can be shared with many customers and used across multiple channels.<\/p>","protected":false},"excerpt":{"rendered":"<p>Introduction Accept payments without building a digital storefront. There are two methods to create payment links: To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website. Create a payment link with the [&hellip;]<\/p>","protected":false},"author":1,"featured_media":11952,"comment_status":"open","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","footnotes":""},"doc_category":[315],"doc_tag":[322,321,323,319,326],"class_list":["post-11949","docs","type-docs","status-publish","has-post-thumbnail","hentry","doc_category-online-payments","doc_tag-cashier","doc_tag-checkout","doc_tag-payment","doc_tag-payment-flow","doc_tag-payment-link"],"year_month":"2026-04","word_count":771,"total_views":"2658","reactions":{"happy":"350","normal":"72","sad":"68"},"author_info":{"name":"wooshpaysite\u7ba1\u7406\u5458","author_nicename":"wooshpaysiteadmin","author_url":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/author\/wooshpaysiteadmin\/"},"doc_category_info":[{"term_name":"Online Payments","term_url":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/docs-category\/online-payments\/"}],"doc_tag_info":[{"term_name":"cashier","term_url":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/docs-tag\/cashier\/"},{"term_name":"checkout","term_url":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/docs-tag\/checkout\/"},{"term_name":"payment","term_url":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/docs-tag\/payment\/"},{"term_name":"Payment Flow","term_url":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/docs-tag\/payment-flow\/"},{"term_name":"payment link","term_url":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/docs-tag\/payment-link\/"}],"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>Payment Link - WooshPay<\/title>\n<meta name=\"description\" content=\"To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website.\" \/>\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\/docs\/payment-link\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Payment Link\" \/>\n<meta property=\"og:description\" content=\"To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wooshpay.com\/docs\/payment-link\/\" \/>\n<meta property=\"og:site_name\" content=\"WooshPay\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-05T08:47:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1480\" \/>\n\t<meta property=\"og:image:height\" content=\"996\" \/>\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 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wooshpay.com\/docs\/payment-link\/\",\"url\":\"https:\/\/wooshpay.com\/docs\/payment-link\/\",\"name\":\"Payment Link - WooshPay\",\"isPartOf\":{\"@id\":\"https:\/\/www.wooshpay.com\/zh\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wooshpay.com\/docs\/payment-link\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wooshpay.com\/docs\/payment-link\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png\",\"datePublished\":\"2023-08-05T08:47:44+00:00\",\"dateModified\":\"2023-08-05T08:47:45+00:00\",\"description\":\"To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website.\",\"breadcrumb\":{\"@id\":\"https:\/\/wooshpay.com\/docs\/payment-link\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wooshpay.com\/docs\/payment-link\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/wooshpay.com\/docs\/payment-link\/#primaryimage\",\"url\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png\",\"contentUrl\":\"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png\",\"width\":1480,\"height\":996,\"caption\":\"wooshpay checkout\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wooshpay.com\/docs\/payment-link\/#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\":\"Payment Link\"}]},{\"@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\":\"it-IT\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Payment Link - WooshPay","description":"To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website.","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\/docs\/payment-link\/","og_locale":"it_IT","og_type":"article","og_title":"Payment Link","og_description":"To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website.","og_url":"https:\/\/wooshpay.com\/docs\/payment-link\/","og_site_name":"WooshPay","article_modified_time":"2023-08-05T08:47:45+00:00","og_image":[{"width":1480,"height":996,"url":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wooshpay.com\/docs\/payment-link\/","url":"https:\/\/wooshpay.com\/docs\/payment-link\/","name":"Payment Link - WooshPay","isPartOf":{"@id":"https:\/\/www.wooshpay.com\/zh\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wooshpay.com\/docs\/payment-link\/#primaryimage"},"image":{"@id":"https:\/\/wooshpay.com\/docs\/payment-link\/#primaryimage"},"thumbnailUrl":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png","datePublished":"2023-08-05T08:47:44+00:00","dateModified":"2023-08-05T08:47:45+00:00","description":"To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website.","breadcrumb":{"@id":"https:\/\/wooshpay.com\/docs\/payment-link\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wooshpay.com\/docs\/payment-link\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/wooshpay.com\/docs\/payment-link\/#primaryimage","url":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png","contentUrl":"https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png","width":1480,"height":996,"caption":"wooshpay checkout"},{"@type":"BreadcrumbList","@id":"https:\/\/wooshpay.com\/docs\/payment-link\/#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":"Payment Link"}]},{"@type":"WebSite","@id":"https:\/\/www.wooshpay.com\/zh\/#website","url":"https:\/\/www.wooshpay.com\/zh\/","name":"WooshPay","description":"Piattaforma di pagamento unica","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":"it-IT"}]}},"uagb_featured_image_src":{"full":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png",1480,996,false],"thumbnail":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout-150x150.png",150,150,true],"medium":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout-300x202.png",300,202,true],"medium_large":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout-768x517.png",768,517,true],"large":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout-1024x689.png",1024,689,true],"1536x1536":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png",1480,996,false],"2048x2048":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout.png",1480,996,false],"trp-custom-language-flag":["https:\/\/wooshpay-official-img.oss-accelerate.aliyuncs.com\/wp-content\/uploads\/2023\/08\/wooshpay-checkout-18x12.png",18,12,true]},"uagb_author_info":{"display_name":"wooshpaysite\u7ba1\u7406\u5458","author_link":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/author\/wooshpaysiteadmin\/"},"uagb_comment_info":0,"uagb_excerpt":"Introduction Accept payments without building a digital storefront. There are two methods to create payment links: To accept a payment without building additional standalone websites or applications, use Payment Links and share the link as many times as you want on social media, in emails, or on your website. Create a payment link with the&hellip;","_links":{"self":[{"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/docs\/11949","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/comments?post=11949"}],"version-history":[{"count":0,"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/docs\/11949\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/media\/11952"}],"wp:attachment":[{"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/media?parent=11949"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/doc_category?post=11949"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/d2jcf4noflr1cd.cloudfront.net\/it\/wp-json\/wp\/v2\/doc_tag?post=11949"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}