<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: I want to respond to a URL request from another platform (OptiSigns) where I am able to attach d in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/i-want-to-respond-to-a-url-request-from-another-platform/m-p/10575#M4201</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/11895"&gt;@mrgillus1976&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;For your scenario you can go with below approach also ,&lt;BR /&gt;1.Create a Workato Recipe with a Webhook Trigger&lt;BR /&gt;Trigger: Choose "Webhook – Trigger when a webhook is received"&lt;BR /&gt;Workato will give you a public URL (e.g., &lt;A href="https://www.workato.com/webhooks/abc123...).This" target="_blank"&gt;https://www.workato.com/webhooks/abc123...).This&lt;/A&gt; is the URL you will enter in OptiSigns.Add Input Parameters (optional):&lt;BR /&gt;You can set parameters in the URL query (e.g., ?screen=welcome) and use those in your SQL stored procedure if needed.&lt;BR /&gt;2.Action – Run SQL Stored Procedure&lt;BR /&gt;Add the “Execute Stored Procedure” action.Choose your SQL connection (via On-Prem Agent).Select the stored procedure and pass any input parameters.The result will be available in the output.Ensure the stored procedure returns only one row as required.&lt;BR /&gt;3.Format Output -&lt;BR /&gt;Depending on what OptiSigns expects:If JSON: Just return the stored procedure result directly.If XML: Use Workato’s “Create XML” action or format it manually.&lt;BR /&gt;4.Response to OptiSigns - Use the “Return Response to Webhook” action: Set response type: JSON or XML.Pass the formatted result.&lt;BR /&gt;5.This sends the response back to OptiSigns when it calls the webhook URL.&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jul 2025 13:32:18 GMT</pubDate>
    <dc:creator>Obugari</dc:creator>
    <dc:date>2025-07-31T13:32:18Z</dc:date>
    <item>
      <title>I want to respond to a URL request from another platform (OptiSigns) where I am able to attach data.</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/i-want-to-respond-to-a-url-request-from-another-platform/m-p/9735#M3969</link>
      <description>&lt;P&gt;I am working with a Digital Signage platform and am trying to pass data from a SQL stored procedure to OptiSigns. OptiSigns accepts data through a JSON/XML URL and although I'm able to figure out how to output that internally through IIS, I need to be able to get it to output through our Workato on prem agent so OptiSigns can get to the URL.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In any case, I've tried so many different things but I'm unsure of how to get this to work correctly. The basic concept is that I enter a URL into OptiSigns where it will call that URL and the response it gets should be the data of the stored procedure (just one row of data in this result) formatted as XML or JSON.&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 11:40:33 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/i-want-to-respond-to-a-url-request-from-another-platform/m-p/9735#M3969</guid>
      <dc:creator>mrgillus1976</dc:creator>
      <dc:date>2025-04-29T11:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: I want to respond to a URL request from another platform (OptiSigns) where I am able to attach d</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/i-want-to-respond-to-a-url-request-from-another-platform/m-p/9785#M3984</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/11895"&gt;@mrgillus1976&lt;/a&gt;,&lt;BR /&gt;If you can leverage API platform service, you can achieve your requirement.&lt;BR /&gt;&lt;BR /&gt;1. You must create an API endpoint which can accepts parameters as per your requirement. [If you need to extract different values from Stored Procedure.]&lt;BR /&gt;2. The endpoint would be connected to a recipe where it will internally call SQL to fetch the data.&lt;BR /&gt;3. You can transform your data to either JSON or XML and send it as the response of the API.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Prudvi&lt;/P&gt;</description>
      <pubDate>Sun, 04 May 2025 08:12:21 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/i-want-to-respond-to-a-url-request-from-another-platform/m-p/9785#M3984</guid>
      <dc:creator>Prudvi</dc:creator>
      <dc:date>2025-05-04T08:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: I want to respond to a URL request from another platform (OptiSigns) where I am able to attach d</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/i-want-to-respond-to-a-url-request-from-another-platform/m-p/10575#M4201</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/11895"&gt;@mrgillus1976&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;For your scenario you can go with below approach also ,&lt;BR /&gt;1.Create a Workato Recipe with a Webhook Trigger&lt;BR /&gt;Trigger: Choose "Webhook – Trigger when a webhook is received"&lt;BR /&gt;Workato will give you a public URL (e.g., &lt;A href="https://www.workato.com/webhooks/abc123...).This" target="_blank"&gt;https://www.workato.com/webhooks/abc123...).This&lt;/A&gt; is the URL you will enter in OptiSigns.Add Input Parameters (optional):&lt;BR /&gt;You can set parameters in the URL query (e.g., ?screen=welcome) and use those in your SQL stored procedure if needed.&lt;BR /&gt;2.Action – Run SQL Stored Procedure&lt;BR /&gt;Add the “Execute Stored Procedure” action.Choose your SQL connection (via On-Prem Agent).Select the stored procedure and pass any input parameters.The result will be available in the output.Ensure the stored procedure returns only one row as required.&lt;BR /&gt;3.Format Output -&lt;BR /&gt;Depending on what OptiSigns expects:If JSON: Just return the stored procedure result directly.If XML: Use Workato’s “Create XML” action or format it manually.&lt;BR /&gt;4.Response to OptiSigns - Use the “Return Response to Webhook” action: Set response type: JSON or XML.Pass the formatted result.&lt;BR /&gt;5.This sends the response back to OptiSigns when it calls the webhook URL.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 13:32:18 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/i-want-to-respond-to-a-url-request-from-another-platform/m-p/10575#M4201</guid>
      <dc:creator>Obugari</dc:creator>
      <dc:date>2025-07-31T13:32:18Z</dc:date>
    </item>
  </channel>
</rss>

