{"id":11735,"date":"2026-02-21T01:03:31","date_gmt":"2026-02-21T01:03:31","guid":{"rendered":"https:\/\/zappysys.com\/blog\/?p=11735"},"modified":"2026-03-02T15:25:27","modified_gmt":"2026-03-02T15:25:27","slug":"ssis-tutorial-how-to-connect-to-alipay","status":"publish","type":"post","link":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/","title":{"rendered":"SSIS tutorial: How to connect to AliPay"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>In this article, you\u2019ll learn how to connect SSIS PowerPack (ZappySys) to AliPay OpenAPI to call REST endpoints from SSIS. We\u2019ll focus on the practical integration pattern AliPay requires: sending requests to the OpenAPI gateway with the correct parameters and a valid RSA2 signature, then parsing JSON responses in SSIS.<\/p>\n<div class=\"content_block\" id=\"custom_post_widget-2523\"><h2><span id=\"Prerequisites\">Prerequisites<\/span><\/h2>\r\nBefore we perform the steps listed in this article, you will need to make sure the following prerequisites are met:\r\n<ol style=\"margin-left: 1.5em;\">\r\n \t<li><abbr title=\"SQL Server Integration Services\">SSIS<\/abbr> designer installed.\u00a0Sometimes it is referred to as <abbr title=\"Business Intelligence Development Studio\">BIDS<\/abbr> or <abbr title=\"SQL Server Data Tools\">SSDT<\/abbr> (<a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/ssdt\/download-sql-server-data-tools-ssdt\" target=\"_blank\" rel=\"noopener\">download it from the Microsoft site<\/a>).<\/li>\r\n \t<li>Basic knowledge of SSIS package\u00a0development using\u00a0<em>Microsoft SQL Server Integration Services<\/em>.<\/li>\r\n \t<li>Make sure\u00a0<span style=\"text-decoration: underline;\"><a href=\"https:\/\/zappysys.com\/products\/ssis-powerpack\/\" target=\"_blank\" rel=\"noopener\">ZappySys SSIS PowerPack<\/a><\/span>\u00a0is installed (<a href=\"https:\/\/zappysys.com\/products\/ssis-powerpack\/download\/\" target=\"_blank\" rel=\"noopener\">download it<\/a>, if you haven't already).<\/li>\r\n \t<li>(<em>Optional step<\/em>)<em>.<\/em>\u00a0<a href=\"https:\/\/zappysys.zendesk.com\/hc\/en-us\/articles\/360035974593\" target=\"_blank\" rel=\"noopener\">Read this article<\/a>, if you are planning to deploy packages to a server and schedule their execution later.<\/li>\r\n<\/ol><\/div>\n<h2>AliPay OpenAPI basics (what SSIS must send)<\/h2>\n<p>AliPay OpenAPI calls typically go through a single gateway endpoint:<\/p>\n<ul>\n<li><strong>Sandbox gateway:<\/strong>\n<pre class=\"\">https:\/\/openapi-sandbox.dl.alipaydev.com\/gateway.do<\/pre>\n<\/li>\n<\/ul>\n<p>A request is built from:<\/p>\n<ul>\n<li>Standard parameters (for example: <code>app_id<\/code>, <code>method<\/code>, <code>charset<\/code>, <code>sign_type<\/code>, <code>timestamp<\/code>, <code>version<\/code>)<\/li>\n<li><code>biz_content<\/code> (usually JSON)<\/li>\n<li><code>sign<\/code> (a signature generated from the parameters using RSA\/RSA2\u2014AliPay recommends RSA2)<\/li>\n<\/ul>\n<p>AliPay requires you to construct a \u201cstring to sign\u201d from parameters and attach <code>sign<\/code> and <code>sign_type<\/code> to the request, then validate\/verify responses using the AliPay public key.<\/p>\n<h2>High-level integration pattern in SSIS<\/h2>\n<p>Because AliPay signing is mandatory, the most reliable SSIS approach is a two-step pattern:<\/p>\n<ol>\n<li><strong>Generate the signature<\/strong> (RSA2) for the request parameters.<\/li>\n<li><strong>Call the AliPay gateway<\/strong> from ZappySys (REST API Task or REST API Source), passing the signed parameters.<\/li>\n<\/ol>\n<p>ZappySys components support custom HTTP methods, headers, request bodies, and advanced options\u2014so they work well once you have the signed payload ready.<\/p>\n<h2>Steps<\/h2>\n<h3>Start in the AliPay Sandbox<\/h3>\n<p>AliPay strongly recommends using the sandbox for development and debugging. In the sandbox, you must:<\/p>\n<ul>\n<li data-start=\"668\" data-end=\"697\">An AliPay Developer Account<\/li>\n<li data-start=\"668\" data-end=\"697\">An AliPay App ID<\/li>\n<li>Use the sandbox gateway URL<\/li>\n<li data-start=\"721\" data-end=\"779\">RSA2 Private Key (generated in AliPay developer console)<\/li>\n<li data-start=\"782\" data-end=\"820\">AliPay Public Key (for verification)<\/li>\n<li data-start=\"823\" data-end=\"889\">Access to the AliPay Sandbox environment (recommended for testing)<\/li>\n<\/ul>\n<h3>Decide where you will generate the RSA2 signature<\/h3>\n<p>You have three common options:<\/p>\n<ul>\n<li><strong>Option A (Recommended): SSIS Script Task (C#) to generate signature<\/strong><br \/>\nUse a Script Task before the ZappySys call to build parameters and compute <code>sign<\/code>.<\/li>\n<li><strong>Option B: Use an AliPay SDK in a small helper app<\/strong><br \/>\nRun it via Execute Process Task to output signed parameters (JSON\/text), then pass them to ZappySys.<\/li>\n<li><strong>Option C: Use a signing microservice<\/strong><br \/>\nSSIS calls your internal service to get <code>sign<\/code>, then calls AliPay.<\/li>\n<\/ul>\n<p><a href=\"https:\/\/docs.alipayplus.com\/alipayplus\/alipayplus\/api_acq_unified\/api_overview?role=ACQP&amp;product=Payment1&amp;version=1.4.6\">AliPay\u2019s documentation<\/a> emphasizes the signature process and verification using the AliPay public key.<\/p>\n<h3>Example: What a signed AliPay request looks like<\/h3>\n<p>AliPay\u2019s gateway model is \u201cparameters + signature.\u201d Conceptually, your final request includes:<\/p>\n<ul>\n<li><code>app_id<\/code><\/li>\n<li><code>method<\/code> (the API name you\u2019re calling)<\/li>\n<li><code>charset<\/code> (often <code>utf-8<\/code>)<\/li>\n<li><code>sign_type<\/code> (recommended <code>RSA2<\/code>)<\/li>\n<li><code>timestamp<\/code><\/li>\n<li><code>version<\/code><\/li>\n<li><code>biz_content<\/code> (JSON)<\/li>\n<li><code>sign<\/code> (computed over the canonicalized parameter string)<\/li>\n<\/ul>\n<p>AliPay documents that <code>sign<\/code> and <code>sign_type<\/code> are appended after creating the string to be signed, and verification uses the AliPay public key.<\/p>\n<h3>Configure the ZappySys REST API Task (Control Flow)<\/h3>\n<p>Use this when operating (e.g., creating a payment, refunding, or querying).<\/p>\n<ol>\n<li>Drag <strong>ZappySys REST API Web Service Task<\/strong> into Control Flow.<\/li>\n<li>Set the task:\n<ul>\n<li><strong>Method:<\/strong> POST (commonly used with AliPay gateway)<\/li>\n<li><strong>URL:<\/strong>\n<pre class=\"\">https:\/\/openapi-sandbox.dl.alipaydev.com\/gateway.do<\/pre>\n<\/li>\n<li>Headers: use\n<pre class=\"\">Content-Type: application\/x-www-form-urlencoded<\/pre>\n<\/li>\n<li><strong>Body:<\/strong> form-encoded parameters; use this format: <em>key1=value1&amp;key2=value2&#8230;<\/em>\n<div>\n<pre>app_id=YOUR_APP_ID&amp;method=alipay.trade.query&amp;charset=utf-8&amp;sign_type=RSA2&amp;timestamp=2026-02-20 10:00:00&amp;version=1.0&amp;biz_content={\"out_trade_no\":\"202602200001\"}&amp;sign=GENERATED_SIGNATURE<\/pre>\n<\/div>\n<\/li>\n<\/ul>\n<\/li>\n<li>Click <strong>Test Request\/Response<\/strong> to confirm you get a valid JSON response.\n<div id=\"attachment_11739\" style=\"width: 847px\" class=\"wp-caption alignnone\"><a href=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-11739\" class=\"size-full wp-image-11739\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png\" alt=\"\" width=\"837\" height=\"720\" srcset=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png 837w, https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API-300x258.png 300w, https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API-768x661.png 768w\" sizes=\"(max-width: 837px) 100vw, 837px\" \/><\/a><p id=\"caption-attachment-11739\" class=\"wp-caption-text\">Alipay REST API<\/p><\/div><\/li>\n<\/ol>\n<h2>Troubleshooting common AliPay + SSIS issues<\/h2>\n<ul>\n<li><strong>invalid-signature \/ missing-signature<\/strong>: most often caused by parameter ordering, incorrect URL-encoding, wrong key pair, or using sandbox keys against production (or vice versa).<\/li>\n<li><strong>Wrong gateway<\/strong>: sandbox and production are fully isolated\u2014ensure your <code>app_id,<\/code>keys, and gateway host match the environment.<\/li>\n<li><strong>Encoding issues<\/strong>: confirm UTF-8 everywhere and ensure parameters are encoded exactly once before submission.<\/li>\n<li><strong>Parsing JSON<\/strong>: use ZappySys JSON Source preview and JSONPath filters to flatten nested objects.<\/li>\n<\/ul>\n<h2>Security best practices<\/h2>\n<ul>\n<li>Store private keys securely (SSIS variables protected, encrypted config, or secret vaults).<\/li>\n<li>Do not hardcode secrets in packages.<\/li>\n<li>Use a sandbox for development, then switch to production only after full validation.<\/li>\n<\/ul>\n<h2>Conclusion<\/h2>\n<p>Download\u00a0<a href=\"https:\/\/zappysys.com\/products\/ssis-powerpack\/\" target=\"_blank\" rel=\"noopener\">SSIS PowerPack<\/a>\u00a0today and see for yourself how easy it is to connect SSIS PowerPack (ZappySys) to AliPay is absolutely achievable once you treat AliPay\u2019s OpenAPI as a\u00a0<strong>signed gateway integration<\/strong>.\u00a0The key is generating a correct <strong>RSA2 signature<\/strong> for every request, then using ZappySys REST components to send the parameters and parse responses.<\/p>\n<p>&nbsp;<\/p>\n<p><span style=\"font-size: 14pt;\"><strong>Still need help?<\/strong><\/span><\/p>\n<p>If the issue persists, please get in touch with our support team:<\/p>\n<ul>\n<li><strong>Live Chat:<\/strong>\u00a0Open the chat widget\u00a0<em>(bottom right of this page)<\/em><\/li>\n<li><strong>Email:<\/strong>\u00a0<a href=\"mailto:support@zappysys.com\">support@zappysys.com<\/a><\/li>\n<li><strong>Support Center<\/strong>:\u00a0<a class=\"inline-onebox\" href=\"https:\/\/zappysys.com\/support\/\">Support | ZappySys<\/a><\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this article, you\u2019ll learn how to connect SSIS PowerPack (ZappySys) to AliPay OpenAPI to call REST endpoints from SSIS. We\u2019ll focus on the practical integration pattern AliPay requires: sending requests to the OpenAPI gateway with the correct parameters and a valid RSA2 signature, then parsing JSON responses in SSIS. AliPay OpenAPI basics (what [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":11739,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[176,225,8,10,9],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>SSIS tutorial: How to connect to AliPay | ZappySys Blog<\/title>\r\n<meta name=\"description\" content=\"SSIS tutorial: How to connect to AliPay - ZappySys Blog\" \/>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"SSIS tutorial: How to connect to AliPay | ZappySys Blog\" \/>\r\n<meta property=\"og:description\" content=\"SSIS tutorial: How to connect to AliPay - ZappySys Blog\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/\" \/>\r\n<meta property=\"og:site_name\" content=\"ZappySys Blog\" \/>\r\n<meta property=\"article:published_time\" content=\"2026-02-21T01:03:31+00:00\" \/>\r\n<meta property=\"article:modified_time\" content=\"2026-03-02T15:25:27+00:00\" \/>\r\n<meta property=\"og:image\" content=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png\" \/>\r\n\t<meta property=\"og:image:width\" content=\"837\" \/>\r\n\t<meta property=\"og:image:height\" content=\"720\" \/>\r\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\r\n<meta name=\"author\" content=\"ZappySys Team\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ZappySys Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/\",\"url\":\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/\",\"name\":\"SSIS tutorial: How to connect to AliPay | ZappySys Blog\",\"isPartOf\":{\"@id\":\"https:\/\/zappysys.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png\",\"datePublished\":\"2026-02-21T01:03:31+00:00\",\"dateModified\":\"2026-03-02T15:25:27+00:00\",\"author\":{\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/91b041e2dcf7ece5f068893c1a68ac6e\"},\"description\":\"SSIS tutorial: How to connect to AliPay - ZappySys Blog\",\"breadcrumb\":{\"@id\":\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#primaryimage\",\"url\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png\",\"contentUrl\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png\",\"width\":837,\"height\":720,\"caption\":\"Alipay REST API\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zappysys.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SSIS tutorial: How to connect to AliPay\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/zappysys.com\/blog\/#website\",\"url\":\"https:\/\/zappysys.com\/blog\/\",\"name\":\"ZappySys Blog\",\"description\":\"SSIS \/ ODBC Drivers \/ API Connectors for JSON, XML, Azure, Amazon AWS, Salesforce, MongoDB and more\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/zappysys.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/91b041e2dcf7ece5f068893c1a68ac6e\",\"name\":\"ZappySys Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/746bec9c9d27f1b90bb181aa516ee234?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/746bec9c9d27f1b90bb181aa516ee234?s=96&d=mm&r=g\",\"caption\":\"ZappySys Team\"},\"sameAs\":[\"https:\/\/zappysys.com\"],\"url\":\"https:\/\/zappysys.com\/blog\/author\/dcalbimonte\/\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SSIS tutorial: How to connect to AliPay | ZappySys Blog","description":"SSIS tutorial: How to connect to AliPay - ZappySys Blog","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:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/","og_locale":"en_US","og_type":"article","og_title":"SSIS tutorial: How to connect to AliPay | ZappySys Blog","og_description":"SSIS tutorial: How to connect to AliPay - ZappySys Blog","og_url":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/","og_site_name":"ZappySys Blog","article_published_time":"2026-02-21T01:03:31+00:00","article_modified_time":"2026-03-02T15:25:27+00:00","og_image":[{"width":837,"height":720,"url":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png","type":"image\/png"}],"author":"ZappySys Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ZappySys Team","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/","url":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/","name":"SSIS tutorial: How to connect to AliPay | ZappySys Blog","isPartOf":{"@id":"https:\/\/zappysys.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#primaryimage"},"image":{"@id":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#primaryimage"},"thumbnailUrl":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png","datePublished":"2026-02-21T01:03:31+00:00","dateModified":"2026-03-02T15:25:27+00:00","author":{"@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/91b041e2dcf7ece5f068893c1a68ac6e"},"description":"SSIS tutorial: How to connect to AliPay - ZappySys Blog","breadcrumb":{"@id":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#primaryimage","url":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png","contentUrl":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2026\/02\/Alipay-REST-API.png","width":837,"height":720,"caption":"Alipay REST API"},{"@type":"BreadcrumbList","@id":"https:\/\/zappysys.com\/blog\/ssis-tutorial-how-to-connect-to-alipay\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zappysys.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SSIS tutorial: How to connect to AliPay"}]},{"@type":"WebSite","@id":"https:\/\/zappysys.com\/blog\/#website","url":"https:\/\/zappysys.com\/blog\/","name":"ZappySys Blog","description":"SSIS \/ ODBC Drivers \/ API Connectors for JSON, XML, Azure, Amazon AWS, Salesforce, MongoDB and more","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zappysys.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/91b041e2dcf7ece5f068893c1a68ac6e","name":"ZappySys Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/746bec9c9d27f1b90bb181aa516ee234?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/746bec9c9d27f1b90bb181aa516ee234?s=96&d=mm&r=g","caption":"ZappySys Team"},"sameAs":["https:\/\/zappysys.com"],"url":"https:\/\/zappysys.com\/blog\/author\/dcalbimonte\/"}]}},"_links":{"self":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/11735"}],"collection":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/comments?post=11735"}],"version-history":[{"count":19,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/11735\/revisions"}],"predecessor-version":[{"id":11820,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/11735\/revisions\/11820"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/media\/11739"}],"wp:attachment":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/media?parent=11735"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/categories?post=11735"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/tags?post=11735"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}