{"id":34,"date":"2015-08-27T20:58:17","date_gmt":"2015-08-27T20:58:17","guid":{"rendered":"http:\/\/zappysys.com\/blog\/?p=34"},"modified":"2025-03-19T07:05:07","modified_gmt":"2025-03-19T07:05:07","slug":"how-to-set-base64-encoded-authorization-header-for-http-web-request","status":"publish","type":"post","link":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/","title":{"rendered":"Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header)"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>In this blog post you will explain how to pass basic credentials (i.e. UserID\/Password) along with your web request. You will also learn about setting up Authorization Header for HTTP Web Request in Base64 manually. To learn more about <a href=\"\/\/zappysys.com\/blog\/call-rest-api-using-ssis-web-service-task\/\" target=\"_blank\" rel=\"noopener\">how to consume \/ call REST API in SSIS check this article<\/a>.<\/p>\n<h2>HTTP Authorization Header basics<\/h2>\n<p>As per HTTP Standard you can pass credentials very simple way using basic Authorization header. Below is the sample of Basic Authorization header.<\/p>\n<p>As you can see it consist of HeaderName=Authorization and Value=some <em>base64 encoded string<\/em><br \/>\n<code>Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==<\/code><br \/>\nAs per standard Base64 encoded string is made up with two elements. <em>your_userid:your_password<\/em><\/p>\n<blockquote><p><strong>NOTE:<\/strong> Base64 is encoding and not encryption method. So never hand over your encoded Authorization header string to anyone. Anyone can decode Base64 encoded string easily by using tools <a href=\"http:\/\/www.bing.com\/search?q=base64+encode&amp;src=IE-TopResult&amp;FORM=IE11TR&amp;conversationid=\" target=\"_blank\" rel=\"noopener\">like this<\/a><\/p><\/blockquote>\n<h2>Passing Basic Credentials along with HTTP Web Request<\/h2>\n<p>You can pass credentials (i.e. UserID\/Password) in two different ways.<\/p>\n<ol>\n<li>Automatic approach &#8211; Using <a href=\"\/\/zappysys.com\/onlinehelp\/ssis-powerpack\/scr\/ssis-http-connection-manager.htm\" target=\"_blank\" rel=\"noopener\">ZS-HTTP Connection Manager<\/a> (BASE64 Encoded Header automatically generated)<\/li>\n<li>Manual approach &#8211; Supplying Authorization where UserID\/Password encoded as Base64<\/li>\n<\/ol>\n<h3>Automatic approach &#8211; Using ZS-HTTP Connection Manager<\/h3>\n<p>Now lets look at how to use automatic approach to pass Basic Authorization in following 3 different tasks\/components<\/p>\n<ol>\n<li>Passing basic credentials in\u00a0<a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-rest-api-web-service-task\/\" target=\"_blank\" rel=\"noopener\">SSIS REST API Task<\/a><\/li>\n<li>Passing basic credentials in\u00a0<a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-json-file-source\/\" target=\"_blank\" rel=\"noopener\">SSIS JSON Source<\/a><\/li>\n<li>Passing basic credentials in\u00a0<a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-xml-source\/\" target=\"_blank\" rel=\"noopener\">SSIS XML Source<\/a><\/li>\n<\/ol>\n<h4>Using SSIS REST API Task (Pass Basic credentials using Connection Manager)<\/h4>\n<p>The simplest way to pass credentials is use HTTP Connection Manager. If you are using <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-rest-api-web-service-task\/\" target=\"_blank\" rel=\"noopener\">REST API Task<\/a> then you can use <strong>Url from Connection<\/strong> Access Mode. And on connection manager specify UserId and password to pass Basic <strong>Authorization Header <\/strong><\/p>\n<p>Advantages of this method are..<br \/>\n1) Its very simple<br \/>\n2)\u00a0Credentials are encrypted in SSIS Package<\/p>\n<blockquote><p><strong>NOTE:<\/strong> We recommend using <strong>https<\/strong>:\/\/ Urls whenever possible otherwise your web request can be decoded in plain text by any servers sitting between you and target and possibly they can get your password by decoding base64 header.<\/p><\/blockquote>\n<div><img decoding=\"async\" class=\"figureimage\" title=\"SSIS REST API Task - Pass Base64 Encoded HTTP Authorization Header\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png\" alt=\"SSIS REST API Task - Pass Base64 Encoded HTTP Authorization Header\" \/><\/div>\n<div><\/div>\n<div><strong>Analyze Base64 Encoded HTTP Authorization Header generated by HTTP Connection Manager<\/strong><\/div>\n<div>You can analyze Webrequest in some 3rd party Free Debugging tools such as Fiddler (<a href=\"https:\/\/zappysys.com\/blog\/how-to-use-fiddler-to-analyze-http-web-requests\/\" target=\"_blank\" rel=\"noopener\">Check this article<\/a>). As you see how its sending Authorization header in Base64 encoded string.<\/div>\n<div><\/div>\n<div><img decoding=\"async\" class=\"figureimage\" title=\"Base64 Encoded HTTP Basic Authorization Header View in Fiddler\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-2.png\" alt=\"Base64 Encoded HTTP Basic Authorization Header View in Fiddler\" \/><br \/>\nBase64 Encoded HTTP Basic Authorization Header &#8211; View in Fiddler<\/div>\n<h4>Using SSIS JSON\/XML Source \u00a0(Pass Basic credentials using Connection Manager)<\/h4>\n<p>You can use HTTP Connection manager in <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-json-file-source\/\" target=\"_blank\" rel=\"noopener\">JSON Source<\/a> and <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-xml-source\/\" target=\"_blank\" rel=\"noopener\">XML Source<\/a> too. Only difference is you have to check Use Credentials checkbox and select HTTP connection manager from available connection managers dropdown.<\/p>\n<ol>\n<li>Select AccessMode as &#8220;File Path or Web URL&#8221;<\/li>\n<li>Enter API URL<\/li>\n<li>Check &#8220;Use Credentials&#8221; option<\/li>\n<li>Click &#8220;New&#8221; next to Connection dropdown or select New &#8220;ZS-HTTP&#8221; connection from dropdown<\/li>\n<li>Configure HTTP Connection as below (i.e. Enter URL, Select Basic Auth, Enter UserID, Password)<\/li>\n<li>Clock OK on HTTP connection manager UI to save and now Test JSON or XML Source UI by clicking Preview (Assuming no other configuration needed)<\/li>\n<\/ol>\n<div id=\"attachment_1676\" style=\"width: 972px\" class=\"wp-caption alignnone\"><a href=\"\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/ssis-json-source-rest-api-http-basic-authentication-pass-userid-password.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-1676\" class=\"size-full wp-image-1676\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-3.png\" alt=\"SSIS JSON Source - Passing Basic Credentials (Supply UserID \/ Password) using HTTP Connection\" width=\"962\" height=\"757\" \/><\/a><p id=\"caption-attachment-1676\" class=\"wp-caption-text\">SSIS JSON Source &#8211; Passing Basic Credentials (Supply UserID \/ Password) using HTTP Connection<\/p><\/div>\n<h3>Manual approach &#8211; Supplying Authorization where UserID\/Password encoded as Base64<\/h3>\n<p>Our <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-json-file-source\/\" target=\"_blank\" rel=\"noopener\">JSON Source<\/a>, <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-xml-source\/\" target=\"_blank\" rel=\"noopener\">XML Source<\/a> and <a href=\"\/\/zappysys.com\/products\/ssis-powerpack\/ssis-rest-api-web-service-task\/\" target=\"_blank\" rel=\"noopener\">REST API Task <\/a> they all support passing BASE64 Encoded String for Authorization header (see below screenshot). Setting up userid and password in HTTP Connection Manger would do same trick as setting up it manually.<\/p>\n<p>To encode any Header value in BASE64 format you simply have to add BASE64ENC format specifier after variable name.<\/p>\n<p>Example: {{User::varUserAndPassword<strong>,BASE64ENC<\/strong>}}<\/p>\n<p>&nbsp;<\/p>\n<div><img decoding=\"async\" class=\"figureimage\" title=\"SSIS JSON Source Task - Pass Base64 Encoded HTTP Authorization Header\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-4.png\" alt=\"SSIS JSON Source Task - Pass Base64 Encoded HTTP Authorization Header\" \/><br \/>\nSSIS JSON Source Task &#8211; Pass Base64 Encoded HTTP Authorization Header<\/div>\n<div><img decoding=\"async\" class=\"figureimage\" title=\"Base64 Encoded HTTP Basic Authorization Header View in Fiddler\" src=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-5.png\" alt=\"Base64 Encoded HTTP Basic Authorization Header View in Fiddler\" \/><\/div>\n<h2>Reference<\/h2>\n<p>Wikipedia Article &#8211; <a href=\"https:\/\/en.wikipedia.org\/wiki\/Basic_access_authentication\" target=\"_blank\" rel=\"noopener\">HTTP Basic Authorization Header<\/a><\/p>\n<h2>Download FREE SSIS Components<\/h2>\n<p><a href=\"https:\/\/zappysys.com\/products\/ssis-powerpack\/\"><img decoding=\"async\" src=\"\/\/zappysys.com\/wp-content\/uploads\/2016\/10\/slider-ssis-powerpack-1.png\" \/><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this blog post you will explain how to pass basic credentials (i.e. UserID\/Password) along with your web request. You will also learn about setting up Authorization Header for HTTP Web Request in Base64 manually. To learn more about how to consume \/ call REST API in SSIS check this article. HTTP Authorization Header [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":10398,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16,17],"tags":[147,123,6,3,12,226,148,4,144,140],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header) | ZappySys Blog<\/title>\r\n<meta name=\"description\" content=\"Learn how to call REST API in SSIS and Supply Basic Credentials (e.g. Pass Userid \/ Password) using HTTP Connection Manager or Manual way (BASE64 Header)\" \/>\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\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header) | ZappySys Blog\" \/>\r\n<meta property=\"og:description\" content=\"Learn how to call REST API in SSIS and Supply Basic Credentials (e.g. Pass Userid \/ Password) using HTTP Connection Manager or Manual way (BASE64 Header)\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/\" \/>\r\n<meta property=\"og:site_name\" content=\"ZappySys Blog\" \/>\r\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/ZappySys\/\" \/>\r\n<meta property=\"article:published_time\" content=\"2015-08-27T20:58:17+00:00\" \/>\r\n<meta property=\"article:modified_time\" content=\"2025-03-19T07:05:07+00:00\" \/>\r\n<meta property=\"og:image\" content=\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png\" \/>\r\n\t<meta property=\"og:image:width\" content=\"830\" \/>\r\n\t<meta property=\"og:image:height\" content=\"751\" \/>\r\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\r\n<meta name=\"author\" content=\"ZappySys\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/zappysys\/\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ZappySys\" \/>\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\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/\",\"url\":\"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/\",\"name\":\"Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header) | ZappySys Blog\",\"isPartOf\":{\"@id\":\"https:\/\/zappysys.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png\",\"datePublished\":\"2015-08-27T20:58:17+00:00\",\"dateModified\":\"2025-03-19T07:05:07+00:00\",\"author\":{\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/2756c237457fbc95d82cb38962f81f82\"},\"description\":\"Learn how to call REST API in SSIS and Supply Basic Credentials (e.g. Pass Userid \/ Password) using HTTP Connection Manager or Manual way (BASE64 Header)\",\"breadcrumb\":{\"@id\":\"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#primaryimage\",\"url\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png\",\"contentUrl\":\"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png\",\"width\":830,\"height\":751},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/zappysys.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header)\"}]},{\"@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\/2756c237457fbc95d82cb38962f81f82\",\"name\":\"ZappySys\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/zappysys.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5c9be148088ba9b8af8e955c5f7c22b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5c9be148088ba9b8af8e955c5f7c22b5?s=96&d=mm&r=g\",\"caption\":\"ZappySys\"},\"sameAs\":[\"http:\/\/www.zappysys.com\/\",\"https:\/\/www.facebook.com\/ZappySys\/\",\"https:\/\/twitter.com\/https:\/\/twitter.com\/zappysys\/\"],\"url\":\"https:\/\/zappysys.com\/blog\/author\/admin\/\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header) | ZappySys Blog","description":"Learn how to call REST API in SSIS and Supply Basic Credentials (e.g. Pass Userid \/ Password) using HTTP Connection Manager or Manual way (BASE64 Header)","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\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/","og_locale":"en_US","og_type":"article","og_title":"Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header) | ZappySys Blog","og_description":"Learn how to call REST API in SSIS and Supply Basic Credentials (e.g. Pass Userid \/ Password) using HTTP Connection Manager or Manual way (BASE64 Header)","og_url":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/","og_site_name":"ZappySys Blog","article_author":"https:\/\/www.facebook.com\/ZappySys\/","article_published_time":"2015-08-27T20:58:17+00:00","article_modified_time":"2025-03-19T07:05:07+00:00","og_image":[{"width":830,"height":751,"url":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png","type":"image\/png"}],"author":"ZappySys","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/zappysys\/","twitter_misc":{"Written by":"ZappySys","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/","url":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/","name":"Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header) | ZappySys Blog","isPartOf":{"@id":"https:\/\/zappysys.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#primaryimage"},"image":{"@id":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#primaryimage"},"thumbnailUrl":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png","datePublished":"2015-08-27T20:58:17+00:00","dateModified":"2025-03-19T07:05:07+00:00","author":{"@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/2756c237457fbc95d82cb38962f81f82"},"description":"Learn how to call REST API in SSIS and Supply Basic Credentials (e.g. Pass Userid \/ Password) using HTTP Connection Manager or Manual way (BASE64 Header)","breadcrumb":{"@id":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#primaryimage","url":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png","contentUrl":"https:\/\/zappysys.com\/blog\/wp-content\/uploads\/2015\/08\/how-to-set-base64-encoded-authorization-header-for-http-web-request-1.png","width":830,"height":751},{"@type":"BreadcrumbList","@id":"https:\/\/zappysys.com\/blog\/how-to-set-base64-encoded-authorization-header-for-http-web-request\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zappysys.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Calling REST API in SSIS with Basic Authentication \/ Userid-Password (BASE64 Authorization header)"}]},{"@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\/2756c237457fbc95d82cb38962f81f82","name":"ZappySys","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zappysys.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5c9be148088ba9b8af8e955c5f7c22b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5c9be148088ba9b8af8e955c5f7c22b5?s=96&d=mm&r=g","caption":"ZappySys"},"sameAs":["http:\/\/www.zappysys.com\/","https:\/\/www.facebook.com\/ZappySys\/","https:\/\/twitter.com\/https:\/\/twitter.com\/zappysys\/"],"url":"https:\/\/zappysys.com\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/34"}],"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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/comments?post=34"}],"version-history":[{"count":10,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/34\/revisions"}],"predecessor-version":[{"id":11249,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/posts\/34\/revisions\/11249"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/media\/10398"}],"wp:attachment":[{"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/media?parent=34"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/categories?post=34"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zappysys.com\/blog\/wp-json\/wp\/v2\/tags?post=34"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}