<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>semantics3 Archives | ZappySys Blog</title>
	<atom:link href="https://zappysys.com/blog/tag/semantics3/feed/" rel="self" type="application/rss+xml" />
	<link>https://zappysys.com/blog/tag/semantics3/</link>
	<description>SSIS / ODBC Drivers / API Connectors for JSON, XML, Azure, Amazon AWS, Salesforce, MongoDB and more</description>
	<lastBuildDate>Mon, 07 Apr 2025 12:55:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.4</generator>

<image>
	<url>https://zappysys.com/blog/wp-content/uploads/2023/01/cropped-zappysys-symbol-large-32x32.png</url>
	<title>semantics3 Archives | ZappySys Blog</title>
	<link>https://zappysys.com/blog/tag/semantics3/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Call Semantics3 REST API in SSIS use OAuth1</title>
		<link>https://zappysys.com/blog/call-semantics3-rest-api-in-ssis-use-oauth1/</link>
		
		<dc:creator><![CDATA[ZappySys]]></dc:creator>
		<pubDate>Sat, 15 Oct 2016 02:00:27 +0000</pubDate>
				<category><![CDATA[SSIS JSON Source (File/REST)]]></category>
		<category><![CDATA[SSIS REST API Task]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[oauth]]></category>
		<category><![CDATA[oauth1]]></category>
		<category><![CDATA[rest api]]></category>
		<category><![CDATA[semantics3]]></category>
		<category><![CDATA[ssis]]></category>
		<category><![CDATA[ssis json source]]></category>
		<category><![CDATA[SSIS PowerPack]]></category>
		<category><![CDATA[ssis rest api task]]></category>
		<guid isPermaLink="false">http://zappysys.com/blog/?p=823</guid>

					<description><![CDATA[<p>Introduction In this post you will learn how to call Sementics3 REST API using SSIS PowerPack. Using drag and drop approach you can consume data from Semantics3 REST API service. In this post we will use ZappySys JSON Source to read data from Amazon MWS API and load into SQL Server. We will also use REST API Task to [&#8230;]</p>
<p>The post <a href="https://zappysys.com/blog/call-semantics3-rest-api-in-ssis-use-oauth1/">Call Semantics3 REST API in SSIS use OAuth1</a> appeared first on <a href="https://zappysys.com/blog">ZappySys Blog</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Introduction</h2>
<p>In this post you will learn how to <em>call <a href="http://docs.semantics3.com/docs/api-requests" target="_blank" rel="noopener">Sementics3</a> REST API</em> using <a href="//zappysys.com/products/ssis-powerpack/" target="_blank" rel="noopener">SSIS PowerPack</a>.</p>
<p>Using drag and drop approach you can <em>consume data from Semantics3 REST API service.</em> In this post we will use <a href="//zappysys.com/products/ssis-powerpack/ssis-xml-source/" target="_blank" rel="noopener">ZappySys JSON Source</a> to read data from Amazon MWS API and load into SQL Server. We will also use <a href="//zappysys.com/blog/call-rest-api-using-ssis-web-service-task/" target="_blank" rel="noopener">REST API Task</a> to call any API from Marketplace Web service and save output into Variable.</p>
<h2>Assumption</h2>
<p>This post assumes following things</p>
<ol>
<li>You have basic knowledge of SSIS and JSON format.</li>
<li>You have registered for Semantics3 API Access. If not then it takes less than 5 minutes to <a href="https://dashboard.semantics3.com/signup" target="_blank" rel="noopener">register for free here</a> to get started.</li>
<li>You have tested few API calls using <a href="https://dashboard.semantics3.com/p#/playground" target="_blank" rel="noopener">Semantics3 REST API Playground</a> this will give you idea about various API you can call and parameters you need to pass.</li>
</ol>
<h2>Step-By-Step &#8211; Call Semantics3 REST API using SSIS</h2>
<p>To consume data from any JSON Source (File or REST API) you can use  <a href="//zappysys.com/products/ssis-powerpack/ssis-json-file-source/" target="_blank" rel="noopener">ZappySys JSON Source.</a> or <a href="//zappysys.com/blog/call-rest-api-using-ssis-web-service-task/" target="_blank" rel="noopener">REST API Task.</a> In below example you will see how to call Semantics3 REST API and save output into SSIS Variable. With this approach you can call any API (GET / POST / DELETE / PUT)</p>
<ol>
<li>Download and Install SSIS PowerPack</li>
<li>Create test package</li>
<li>From SSIS toolbox drag <a href="//zappysys.com/blog/call-rest-api-using-ssis-web-service-task/" target="_blank" rel="noopener">ZS REST API Task</a>  and double click on the task to configure it</li>
<li>Select Request URL Access Mode = [Url from Connection]</li>
<li>Enter URL as below<br />
<pre class="crayon-plain-tag">https://api.semantics3.com/v1/products?q=%7b%22search%22%3a%22iphone%22%7d</pre>
In above URL<br />
** q=%7b%22search%22%3a%22iphone%22%7d =&gt; This is your search query in URL encoded format. Data without URL encode may look like this q={&#8220;search&#8221; : &#8220;iphone&#8221; }<br />
** If you have stored query in plain text (not encoded) in SSIS variable then you can use URLENC format specifier like this q={{User::varQ,URLENC}} . This will automatically encode data for you.</li>
<li>In Select Url Connection dropdown select New OAUTH connection option.</li>
<li>When prompted on OAuth connection UI select Provider=Custom, Enter ApiKey (i.e. Client ID) and Secret (i.e. Client Secret). If you not sure what is this then check your Developer console &gt; Applications Tab. Select OAuth1 from Version dropdown.
<div id="attachment_840" style="width: 685px" class="wp-caption alignnone"><a href="//zappysys.com/blog/wp-content/uploads/2016/10/ssis-oauth-1-connection-manager-semantics3-rest-api-call.png"><img fetchpriority="high" decoding="async" aria-describedby="caption-attachment-840" class="size-full wp-image-840" src="//zappysys.com/blog/wp-content/uploads/2016/10/ssis-oauth-1-connection-manager-semantics3-rest-api-call.png" alt="Semantics3 API Call using SSIS OAuth1 Connection Manager" width="675" height="491" srcset="https://zappysys.com/blog/wp-content/uploads/2016/10/ssis-oauth-1-connection-manager-semantics3-rest-api-call.png 675w, https://zappysys.com/blog/wp-content/uploads/2016/10/ssis-oauth-1-connection-manager-semantics3-rest-api-call-300x218.png 300w" sizes="(max-width: 675px) 100vw, 675px" /></a><p id="caption-attachment-840" class="wp-caption-text">Semantics3 API Call using SSIS OAuth1 Connection Manager</p></div></li>
<li>Click OK to save UI. Do not click test because it may not work yet.</li>
<li>Now click Test and see content in the Preview window.
<div id="attachment_841" style="width: 711px" class="wp-caption alignnone"><a href="//zappysys.com/blog/wp-content/uploads/2016/10/ssis-call-semantics3-rest-api-oauth.png"><img decoding="async" aria-describedby="caption-attachment-841" class="size-full wp-image-841" src="//zappysys.com/blog/wp-content/uploads/2016/10/ssis-call-semantics3-rest-api-oauth.png" alt="Call Semantics3 REST API using SSIS REST API Task" width="701" height="579" srcset="https://zappysys.com/blog/wp-content/uploads/2016/10/ssis-call-semantics3-rest-api-oauth.png 701w, https://zappysys.com/blog/wp-content/uploads/2016/10/ssis-call-semantics3-rest-api-oauth-300x248.png 300w" sizes="(max-width: 701px) 100vw, 701px" /></a><p id="caption-attachment-841" class="wp-caption-text">Call Semantics3 REST API using SSIS REST API Task</p></div></li>
<li>If you wish to save response data into SSIS variable then goto response Tab and check save option and select variable name.</li>
</ol>
<h2>Load Semantics3 data into SQL Server using SSIS (REST API Call)</h2>
<p>In this section we will see how to use <a href="//zappysys.com/products/ssis-powerpack/ssis-json-file-source/" target="_blank" rel="noopener">ZappySys JSON Source</a> to read data from Semantics3 REST API and load into SQL Server</p>
<p>For making things simple we are calling</p>
<ol>
<li>Download and Install SSIS PowerPack</li>
<li>Create test package</li>
<li>From SSIS toolbox drag Data Flow task and double click task to go to Data Flow designer</li>
<li>Drag <a href="//zappysys.com/products/ssis-powerpack/ssis-json-file-source/" target="_blank" rel="noopener">ZS JSON Source</a> from SSIS Toolbox</li>
<li>Configure JSON Source as below. You can use Select Filter option to select hierarchy (JSON Array). Then click Preview to see data.
<div id="attachment_839" style="width: 849px" class="wp-caption alignnone"><a href="//zappysys.com/blog/wp-content/uploads/2016/10/ssis-call-semantics3-rest-api-oauth1-read-json-source.png"><img decoding="async" aria-describedby="caption-attachment-839" class="size-full wp-image-839" src="//zappysys.com/blog/wp-content/uploads/2016/10/ssis-call-semantics3-rest-api-oauth1-read-json-source.png" alt="Get data from Semantics3 API using SSIS JSON Source" width="839" height="635" srcset="https://zappysys.com/blog/wp-content/uploads/2016/10/ssis-call-semantics3-rest-api-oauth1-read-json-source.png 839w, https://zappysys.com/blog/wp-content/uploads/2016/10/ssis-call-semantics3-rest-api-oauth1-read-json-source-300x227.png 300w" sizes="(max-width: 839px) 100vw, 839px" /></a><p id="caption-attachment-839" class="wp-caption-text">Get data from Semantics3 API using SSIS JSON Source</p></div></li>
<li>Drag OLEDB destination from SSIS Toolbox.</li>
<li>Connect JSON Source to OLEDB Destination and map input column to target table</li>
<li>Execute dataflow to load Semantics3 Data into SQL Server (or any destination such as File, Oracle, MySQL)
<div id="attachment_838" style="width: 591px" class="wp-caption alignnone"><a href="//zappysys.com/blog/wp-content/uploads/2016/10/ssis-extract-data-semantics3-rest-api-load-into-sql-server.png"><img loading="lazy" decoding="async" aria-describedby="caption-attachment-838" class="size-full wp-image-838" src="//zappysys.com/blog/wp-content/uploads/2016/10/ssis-extract-data-semantics3-rest-api-load-into-sql-server.png" alt="Read from Semantics3 REST API Call - Load into SQL Server using SSIS" width="581" height="379" srcset="https://zappysys.com/blog/wp-content/uploads/2016/10/ssis-extract-data-semantics3-rest-api-load-into-sql-server.png 581w, https://zappysys.com/blog/wp-content/uploads/2016/10/ssis-extract-data-semantics3-rest-api-load-into-sql-server-300x196.png 300w" sizes="(max-width: 581px) 100vw, 581px" /></a><p id="caption-attachment-838" class="wp-caption-text">Read from Semantics3 REST API Call &#8211; Load into SQL Server using SSIS</p></div></li>
</ol>
<h2>Conclusion</h2>
<p>Semantics3 API provides great way to automate many functionality for searching and ordering millions of products into your custom App. Using ZappySys <a href="//zappysys.com/products/ssis-powerpack/" target="_blank" rel="noopener">SSIS PowerPack</a> you can consume data from any REST API or Web service without replying on SDK / coding approach (e.g. C#, Java, Python, Ruby).</p>
<p>The post <a href="https://zappysys.com/blog/call-semantics3-rest-api-in-ssis-use-oauth1/">Call Semantics3 REST API in SSIS use OAuth1</a> appeared first on <a href="https://zappysys.com/blog">ZappySys Blog</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
