{"id":275,"date":"2025-12-31T09:12:24","date_gmt":"2025-12-31T09:12:24","guid":{"rendered":"https:\/\/www.saaztro.co\/blog\/?p=275"},"modified":"2025-12-31T09:19:28","modified_gmt":"2025-12-31T09:19:28","slug":"payme-paycom-payment-gateway-integration","status":"publish","type":"post","link":"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration","title":{"rendered":"Payme (Paycom) Payment Gateway Integration"},"content":{"rendered":"<h1 data-start=\"244\" data-end=\"319\">Payme (Paycom) Payment Gateway Integration \u2013 Step-by-Step Guide (Laravel)<\/h1>\n<p data-start=\"321\" data-end=\"587\">Online payments are essential for modern applications in Uzbekistan. <strong data-start=\"390\" data-end=\"431\"><span class=\"hover:entity-accent entity-underline inline cursor-pointer align-baseline\"><span class=\"whitespace-normal\">Payme<\/span><\/span><\/strong> (powered by <strong data-start=\"444\" data-end=\"485\"><span class=\"hover:entity-accent entity-underline inline cursor-pointer align-baseline\"><span class=\"whitespace-normal\">Paycom<\/span><\/span><\/strong>) is one of the most trusted payment gateways for card payments, subscriptions, and recurring billing.<\/p>\n<p data-start=\"589\" data-end=\"692\">In this blog, we\u2019ll explain <strong data-start=\"617\" data-end=\"651\">Payme integration step by step<\/strong>, using <strong data-start=\"659\" data-end=\"670\">Laravel<\/strong> and real API methods.<\/p>\n<h2 data-start=\"699\" data-end=\"722\">What You\u2019ll Learn<\/h2>\n<ul data-start=\"724\" data-end=\"863\">\n<li data-start=\"724\" data-end=\"752\">\n<p data-start=\"726\" data-end=\"752\">How Payme works internally<\/p>\n<\/li>\n<li data-start=\"753\" data-end=\"783\">\n<p data-start=\"755\" data-end=\"783\">Card add &amp; verification flow<\/p>\n<\/li>\n<li data-start=\"784\" data-end=\"812\">\n<p data-start=\"786\" data-end=\"812\">Receipt creation &amp; payment<\/p>\n<\/li>\n<li data-start=\"813\" data-end=\"830\">\n<p data-start=\"815\" data-end=\"830\">Status checking<\/p>\n<\/li>\n<li data-start=\"831\" data-end=\"863\">\n<p data-start=\"833\" data-end=\"863\">Common errors &amp; best practices<\/p>\n<\/li>\n<\/ul>\n<h2 data-start=\"870\" data-end=\"889\">Prerequisites<\/h2>\n<p data-start=\"891\" data-end=\"927\">Before starting, make sure you have:<\/p>\n<ul data-start=\"929\" data-end=\"1041\">\n<li data-start=\"929\" data-end=\"952\">\n<p data-start=\"931\" data-end=\"952\">Payme <strong data-start=\"937\" data-end=\"952\">Merchant ID<\/strong><\/p>\n<\/li>\n<li data-start=\"953\" data-end=\"977\">\n<p data-start=\"955\" data-end=\"977\">Payme <strong data-start=\"961\" data-end=\"977\">Merchant Key<\/strong><\/p>\n<\/li>\n<li data-start=\"978\" data-end=\"998\">\n<p data-start=\"980\" data-end=\"998\">Laravel 8+ project<\/p>\n<\/li>\n<li data-start=\"999\" data-end=\"1041\">\n<p data-start=\"1001\" data-end=\"1041\">HTTPS enabled (mandatory for production)<\/p>\n<\/li>\n<\/ul>\n<h2 data-start=\"1048\" data-end=\"1087\">Payme Integration Flow (Overview)<\/h2>\n<p data-start=\"1089\" data-end=\"1138\">Here is the <strong data-start=\"1101\" data-end=\"1137\">standard Payme payment lifecycle<\/strong>:<\/p>\n<ol data-start=\"1140\" data-end=\"1291\">\n<li data-start=\"1140\" data-end=\"1163\">\n<p data-start=\"1143\" data-end=\"1163\">Create &amp; save card<\/p>\n<\/li>\n<li data-start=\"1164\" data-end=\"1186\">\n<p data-start=\"1167\" data-end=\"1186\">Verify card (OTP)<\/p>\n<\/li>\n<li data-start=\"1187\" data-end=\"1216\">\n<p data-start=\"1190\" data-end=\"1216\">Create receipt (invoice)<\/p>\n<\/li>\n<li data-start=\"1217\" data-end=\"1233\">\n<p data-start=\"1220\" data-end=\"1233\">Pay receipt<\/p>\n<\/li>\n<li data-start=\"1234\" data-end=\"1259\">\n<p data-start=\"1237\" data-end=\"1259\">Check payment status<\/p>\n<\/li>\n<li data-start=\"1260\" data-end=\"1291\">\n<p data-start=\"1263\" data-end=\"1291\">Handle webhook (recommended)<\/p>\n<\/li>\n<\/ol>\n<h2 data-start=\"1298\" data-end=\"1337\">Step 1: Add Card (<code data-start=\"1322\" data-end=\"1336\">cards.create<\/code>)<\/h2>\n<p data-start=\"1339\" data-end=\"1388\">This step <strong data-start=\"1349\" data-end=\"1378\">registers the user\u2019s card<\/strong> in Payme.<\/p>\n<p data-start=\"1339\" data-end=\"1388\">{<br \/>\n&#8220;id&#8221;: 1,<br \/>\n&#8220;method&#8221;: &#8220;cards.create&#8221;,<br \/>\n&#8220;params&#8221;: {<br \/>\n&#8220;card&#8221;: {<br \/>\n&#8220;number&#8221;: &#8220;8600069195406311&#8221;,<br \/>\n&#8220;expire&#8221;: &#8220;0399&#8221;<br \/>\n},<br \/>\n&#8220;save&#8221;: true<br \/>\n}<br \/>\n}<\/p>\n<p data-start=\"1339\" data-end=\"1388\">Returns a <strong data-start=\"1573\" data-end=\"1587\">card token<\/strong><br data-start=\"1587\" data-end=\"1590\" \/>Card is <strong data-start=\"1600\" data-end=\"1618\">NOT usable yet<\/strong><\/p>\n<h2 data-start=\"1625\" data-end=\"1667\">Step 2: Verify Card (<code data-start=\"1652\" data-end=\"1666\">cards.verify<\/code>)<\/h2>\n<p data-start=\"1669\" data-end=\"1710\">Payme sends an <strong data-start=\"1684\" data-end=\"1709\">OTP to the cardholder<\/strong>.<\/p>\n<p data-start=\"1669\" data-end=\"1710\">{<br \/>\n&#8220;id&#8221;: 2,<br \/>\n&#8220;method&#8221;: &#8220;cards.verify&#8221;,<br \/>\n&#8220;params&#8221;: {<br \/>\n&#8220;token&#8221;: &#8220;CARD_TOKEN&#8221;,<br \/>\n&#8220;code&#8221;: &#8220;666666&#8221;<br \/>\n}<br \/>\n}<\/p>\n<p data-start=\"1669\" data-end=\"1710\">After success, the card becomes <strong data-start=\"1869\" data-end=\"1879\">active<\/strong><\/p>\n<p data-start=\"1669\" data-end=\"1710\">Step 3: Create Receipt (<code data-start=\"1916\" data-end=\"1933\">receipts.create<\/code>)<\/p>\n<p data-start=\"1669\" data-end=\"1710\">A receipt is an <strong data-start=\"1952\" data-end=\"1963\">invoice<\/strong>. No money is charged here.<\/p>\n<p data-start=\"1669\" data-end=\"1710\">{<br \/>\n&#8220;id&#8221;: 3,<br \/>\n&#8220;method&#8221;: &#8220;receipts.create&#8221;,<br \/>\n&#8220;params&#8221;: {<br \/>\n&#8220;amount&#8221;: 1500000,<br \/>\n&#8220;account&#8221;: {<br \/>\n&#8220;order_id&#8221;: &#8220;ORD-1001&#8221;<br \/>\n}<br \/>\n}<br \/>\n}<\/p>\n<p data-start=\"1669\" data-end=\"1710\">Amount is in <strong data-start=\"2160\" data-end=\"2169\">tiyin<\/strong> (1,500,000 = 15,000 UZS)<\/p>\n<p data-start=\"1669\" data-end=\"1710\">Step 4: Pay Receipt (<code data-start=\"2228\" data-end=\"2242\">receipts.pay<\/code>)<\/p>\n<p data-start=\"1669\" data-end=\"1710\">This step <strong data-start=\"2255\" data-end=\"2281\">charges the saved card<\/strong>.<\/p>\n<p data-start=\"1669\" data-end=\"1710\">{<br \/>\n&#8220;id&#8221;: 4,<br \/>\n&#8220;method&#8221;: &#8220;receipts.pay&#8221;,<br \/>\n&#8220;params&#8221;: {<br \/>\n&#8220;id&#8221;: &#8220;RECEIPT_ID&#8221;,<br \/>\n&#8220;token&#8221;: &#8220;CARD_TOKEN&#8221;<br \/>\n}<br \/>\n}<\/p>\n<p data-start=\"1669\" data-end=\"1710\">Payment is initiated<br data-start=\"2431\" data-end=\"2434\" \/>Receipt state changes to <code data-start=\"2462\" data-end=\"2465\">4<\/code> on success<\/p>\n<p data-start=\"1669\" data-end=\"1710\">Step 5: Check Payment Status (<code data-start=\"2519\" data-end=\"2535\">receipts.check<\/code>)<\/p>\n<p data-start=\"1669\" data-end=\"1710\">Used to <strong data-start=\"2546\" data-end=\"2571\">verify payment result<\/strong>.<\/p>\n<p data-start=\"1669\" data-end=\"1710\">{<br \/>\n&#8220;id&#8221;: 5,<br \/>\n&#8220;method&#8221;: &#8220;receipts.check&#8221;,<br \/>\n&#8220;params&#8221;: {<br \/>\n&#8220;id&#8221;: &#8220;RECEIPT_ID&#8221;<br \/>\n}<br \/>\n}<\/p>\n<table>\n<thead>\n<tr>\n<th>State<\/th>\n<th>Meaning<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>0<\/code><\/td>\n<td>Created<\/td>\n<\/tr>\n<tr>\n<td><code>1<\/code><\/td>\n<td>Paying<\/td>\n<\/tr>\n<tr>\n<td><code>4<\/code><\/td>\n<td>Paid<\/td>\n<\/tr>\n<tr>\n<td><code>50<\/code><\/td>\n<td>Cancelled<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Step 6: Handle Webhooks (Recommended)<\/p>\n<p data-start=\"2854\" data-end=\"2929\">Payme sends <strong data-start=\"2866\" data-end=\"2900\">server-to-server notifications<\/strong> when payment status changes.<\/p>\n<p data-start=\"2931\" data-end=\"3022\">Always trust <strong data-start=\"2947\" data-end=\"2970\">webhook + state = 4<\/strong><br data-start=\"2970\" data-end=\"2973\" \/>Avoid aggressive polling with <code data-start=\"3006\" data-end=\"3022\">receipts.check<\/code><\/p>\n<h2 data-start=\"3029\" data-end=\"3057\">Test Cards for Sandbox<\/h2>\n<p data-start=\"3059\" data-end=\"3098\">Use these <strong data-start=\"3069\" data-end=\"3097\">ONLY in test environment<\/strong>:<\/p>\n<table>\n<thead>\n<tr>\n<th>Card Type<\/th>\n<th>Number<\/th>\n<th>Expiry<\/th>\n<th>OTP<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Uzcard<\/td>\n<td>8600 0691 9540 6311<\/td>\n<td>03\/99<\/td>\n<td>666666<\/td>\n<\/tr>\n<tr>\n<td>Humo<\/td>\n<td>9860 0101 0101 0101<\/td>\n<td>03\/99<\/td>\n<td>666666<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Common Payme Errors &amp; Fixes<\/p>\n<table>\n<thead>\n<tr>\n<th>Error Code<\/th>\n<th>Meaning<\/th>\n<th>Solution<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>-31400<\/code><\/td>\n<td>Card not found<\/td>\n<td>Re-add card<\/td>\n<\/tr>\n<tr>\n<td><code>-31001<\/code><\/td>\n<td>Unauthorized<\/td>\n<td>Check X-Auth<\/td>\n<\/tr>\n<tr>\n<td><code>-31050<\/code><\/td>\n<td>Amount mismatch<\/td>\n<td>Recalculate total<\/td>\n<\/tr>\n<tr>\n<td><code>-31007<\/code><\/td>\n<td>Too many OTP attempts<\/td>\n<td>Wait &amp; retry<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Final Thoughts<\/p>\n<p data-start=\"3803\" data-end=\"3964\">ayme integration is <strong data-start=\"3824\" data-end=\"3858\">secure, scalable, and reliable<\/strong> when implemented correctly.<br data-start=\"3886\" data-end=\"3889\" \/>Following the <strong data-start=\"3903\" data-end=\"3920\">official flow<\/strong> ensures smooth payments and fewer failures.<\/p>\n<p data-start=\"3966\" data-end=\"3986\">If you are building:<\/p>\n<ul data-start=\"3987\" data-end=\"4053\">\n<li data-start=\"3987\" data-end=\"3999\">\n<p data-start=\"3989\" data-end=\"3999\">E-commerce<\/p>\n<\/li>\n<li data-start=\"4000\" data-end=\"4024\">\n<p data-start=\"4002\" data-end=\"4024\">Subscription platforms<\/p>\n<\/li>\n<li data-start=\"4025\" data-end=\"4039\">\n<p data-start=\"4027\" data-end=\"4039\">SaaS billing<\/p>\n<\/li>\n<li data-start=\"4040\" data-end=\"4053\">\n<p data-start=\"4042\" data-end=\"4053\">Mobile apps<\/p>\n<\/li>\n<\/ul>\n<p data-start=\"4055\" data-end=\"4110\"><strong data-start=\"4058\" data-end=\"4110\">Payme is a solid choice for Uzbekistan payments.<\/strong><\/p>\n<p data-start=\"4055\" data-end=\"4110\">Need Help? to integrate with your application please <a href=\"https:\/\/www.saaztro.co\/contact-us\">contact us<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Payme (Paycom) Payment Gateway Integration \u2013 Step-by-Step Guide (Laravel) Online payments are essential for modern applications in Uzbekistan. Payme (powered by Paycom) is one of the most trusted payment gateways&hellip;<\/p>\n","protected":false},"author":1,"featured_media":279,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,3,4,6,7,5,83],"tags":[261,259,258,255,256,257,254,260],"class_list":["post-275","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-food-delivery-solution","category-grocery-delivery-solution","category-liquor-delivery-solution","category-meat-delivery-solution","category-medicines-delivery-solution","category-pizza-delivery-solution","category-restaurant-delivery-solutions","tag-humo-card-payme","tag-paycom-receipt-create","tag-payme-api-laravel","tag-payme-integration","tag-payme-payment-gateway","tag-payme-payment-gateway-integration","tag-uzbekistan-payment-gateway","tag-uzcard-payme-integration"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Payme Payment Gateway Integration Guide (Step-by-Step with API)<\/title>\n<meta name=\"description\" content=\"Learn how to integrate Payme (Paycom) payment gateway step by step using cards, OTP verification, receipts, and Laravel API with test examples\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Payme Payment Gateway Integration Guide (Step-by-Step with API)\" \/>\n<meta property=\"og:description\" content=\"Learn how to integrate Payme (Paycom) payment gateway step by step using cards, OTP verification, receipts, and Laravel API with test examples\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration\" \/>\n<meta property=\"og:site_name\" content=\"Saaztro\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-31T09:12:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-31T09:19:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.saaztro.co\/blog\/wp-content\/uploads\/2025\/12\/Payme-payment-gateway-integration-flow-diagram-with-card-verification-and-receipt-payment.png\" \/>\n\t<meta property=\"og:image:width\" content=\"950\" \/>\n\t<meta property=\"og:image:height\" content=\"650\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration\",\"url\":\"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration\",\"name\":\"Payme Payment Gateway Integration Guide (Step-by-Step with API)\",\"isPartOf\":{\"@id\":\"https:\/\/www.saaztro.co\/blog\/#website\"},\"datePublished\":\"2025-12-31T09:12:24+00:00\",\"dateModified\":\"2025-12-31T09:19:28+00:00\",\"author\":{\"@id\":\"https:\/\/www.saaztro.co\/blog\/#\/schema\/person\/8185d0c6efe6f13a48497d221beb0870\"},\"description\":\"Learn how to integrate Payme (Paycom) payment gateway step by step using cards, OTP verification, receipts, and Laravel API with test examples\",\"breadcrumb\":{\"@id\":\"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.saaztro.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Payme (Paycom) Payment Gateway Integration\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.saaztro.co\/blog\/#website\",\"url\":\"https:\/\/www.saaztro.co\/blog\/\",\"name\":\"Saaztro\",\"description\":\"Saas Based Delivery App Solutions\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.saaztro.co\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.saaztro.co\/blog\/#\/schema\/person\/8185d0c6efe6f13a48497d221beb0870\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.saaztro.co\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9f6e5e8f7957f115e27b9d6deff38967d6c3e4fcc25c775b547d47ce5abe7bdd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9f6e5e8f7957f115e27b9d6deff38967d6c3e4fcc25c775b547d47ce5abe7bdd?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\/\/saaztro.co\/wp57\"],\"url\":\"https:\/\/www.saaztro.co\/blog\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Payme Payment Gateway Integration Guide (Step-by-Step with API)","description":"Learn how to integrate Payme (Paycom) payment gateway step by step using cards, OTP verification, receipts, and Laravel API with test examples","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:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration","og_locale":"en_US","og_type":"article","og_title":"Payme Payment Gateway Integration Guide (Step-by-Step with API)","og_description":"Learn how to integrate Payme (Paycom) payment gateway step by step using cards, OTP verification, receipts, and Laravel API with test examples","og_url":"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration","og_site_name":"Saaztro","article_published_time":"2025-12-31T09:12:24+00:00","article_modified_time":"2025-12-31T09:19:28+00:00","og_image":[{"width":950,"height":650,"url":"https:\/\/www.saaztro.co\/blog\/wp-content\/uploads\/2025\/12\/Payme-payment-gateway-integration-flow-diagram-with-card-verification-and-receipt-payment.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration","url":"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration","name":"Payme Payment Gateway Integration Guide (Step-by-Step with API)","isPartOf":{"@id":"https:\/\/www.saaztro.co\/blog\/#website"},"datePublished":"2025-12-31T09:12:24+00:00","dateModified":"2025-12-31T09:19:28+00:00","author":{"@id":"https:\/\/www.saaztro.co\/blog\/#\/schema\/person\/8185d0c6efe6f13a48497d221beb0870"},"description":"Learn how to integrate Payme (Paycom) payment gateway step by step using cards, OTP verification, receipts, and Laravel API with test examples","breadcrumb":{"@id":"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.saaztro.co\/blog\/payme-paycom-payment-gateway-integration#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.saaztro.co\/blog\/"},{"@type":"ListItem","position":2,"name":"Payme (Paycom) Payment Gateway Integration"}]},{"@type":"WebSite","@id":"https:\/\/www.saaztro.co\/blog\/#website","url":"https:\/\/www.saaztro.co\/blog\/","name":"Saaztro","description":"Saas Based Delivery App Solutions","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.saaztro.co\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.saaztro.co\/blog\/#\/schema\/person\/8185d0c6efe6f13a48497d221beb0870","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.saaztro.co\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9f6e5e8f7957f115e27b9d6deff38967d6c3e4fcc25c775b547d47ce5abe7bdd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9f6e5e8f7957f115e27b9d6deff38967d6c3e4fcc25c775b547d47ce5abe7bdd?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/saaztro.co\/wp57"],"url":"https:\/\/www.saaztro.co\/blog\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/posts\/275","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/comments?post=275"}],"version-history":[{"count":2,"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/posts\/275\/revisions"}],"predecessor-version":[{"id":278,"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/posts\/275\/revisions\/278"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/media\/279"}],"wp:attachment":[{"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/media?parent=275"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/categories?post=275"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.saaztro.co\/blog\/wp-json\/wp\/v2\/tags?post=275"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}