<?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 SDK Connector capture Recipe variables in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10070#M4069</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to know if there's a workaround for capturing specific variables configured in the Recipe using the Connector SDK.&lt;BR /&gt;&lt;BR /&gt;Specifically, the issue I'm facing is that the connector has an input with a &lt;STRONG&gt;default&lt;/STRONG&gt; value, but it is searching for a line "&lt;STRONG&gt;605cd37b&lt;/STRONG&gt;" that does not exist in the target recipe, example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="ruby"&gt;{ name: 'debug_level', label: 'Debug Level', type: 'string', control_type: 'text', optional: false, sticky: true, ngIf: 'false', default: '#{=_dp(\'{"pill_type":"output","provider":"workato_variable","line":"605cd37b","path":["debug_level"]}\')}'}' },&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to do this like with the &lt;STRONG&gt;account_property&lt;/STRONG&gt; and &lt;STRONG&gt;project_property&lt;/STRONG&gt; by specifying a path or just the name?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for the help,&lt;BR /&gt;Seb&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jun 2025 12:44:33 GMT</pubDate>
    <dc:creator>syepes</dc:creator>
    <dc:date>2025-06-05T12:44:33Z</dc:date>
    <item>
      <title>SDK Connector capture Recipe variables</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10070#M4069</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to know if there's a workaround for capturing specific variables configured in the Recipe using the Connector SDK.&lt;BR /&gt;&lt;BR /&gt;Specifically, the issue I'm facing is that the connector has an input with a &lt;STRONG&gt;default&lt;/STRONG&gt; value, but it is searching for a line "&lt;STRONG&gt;605cd37b&lt;/STRONG&gt;" that does not exist in the target recipe, example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="ruby"&gt;{ name: 'debug_level', label: 'Debug Level', type: 'string', control_type: 'text', optional: false, sticky: true, ngIf: 'false', default: '#{=_dp(\'{"pill_type":"output","provider":"workato_variable","line":"605cd37b","path":["debug_level"]}\')}'}' },&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to do this like with the &lt;STRONG&gt;account_property&lt;/STRONG&gt; and &lt;STRONG&gt;project_property&lt;/STRONG&gt; by specifying a path or just the name?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for the help,&lt;BR /&gt;Seb&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 12:44:33 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10070#M4069</guid>
      <dc:creator>syepes</dc:creator>
      <dc:date>2025-06-05T12:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: SDK Connector capture Recipe variables</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10108#M4070</link>
      <description>&lt;P&gt;&lt;IMG src="&amp;quot;C:\Users\Bhagya Sri\Pictures\Screenshots\Screenshot 2025-06-07 105127.png&amp;quot;" border="0" alt="" /&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/11263"&gt;@syepes&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;If I understood you right, you’re trying to get a variable into your connector input (like debug_level), but the issue is that the default is pointing to a recipe step ID, which might not always exist. That can break things if the recipe changes or gets copied.&lt;/P&gt;&lt;P&gt;What I tried instead is using a &lt;STRONG&gt;project property&lt;/STRONG&gt; — it’s way more reliable. You just define it once in the project settings, and then pull it into your connector like this:&lt;/P&gt;&lt;PRE&gt;default: '#{_dp(\'{"pill_type":"project_property","property_name":"debug_level"}\')}'&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 2025-06-07 105127.png" style="width: 400px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/2115i0D0BA338A7D3DFBD/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Screenshot 2025-06-07 105127.png" alt="Screenshot 2025-06-07 105127.png" /&gt;&lt;/span&gt;That way, no need to depend on any specific step in the recipe, it just works across every recipe in that project.&lt;/P&gt;&lt;P&gt;Let me know if I’ve got the right idea of what you’re trying to do, and if this actually helps!&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jun 2025 05:43:03 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10108#M4070</guid>
      <dc:creator>Bhagya_pola</dc:creator>
      <dc:date>2025-06-07T05:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: SDK Connector capture Recipe variables</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10181#M4071</link>
      <description>&lt;P&gt;Thanks for the info, actually I am already using the global properties (&lt;STRONG&gt;account_property&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;project_property),&amp;nbsp;&lt;/STRONG&gt;but because currently there are no way of having Recipe specific properties.&lt;BR /&gt;&lt;BR /&gt;I am putting a standard variable block on all our own custom made recipes so that this connector always searches for these specific variables. This is a sort of workaround, it's why I was trying to read the same block from the SDK connector.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 12:53:36 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10181#M4071</guid>
      <dc:creator>syepes</dc:creator>
      <dc:date>2025-06-10T12:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: SDK Connector capture Recipe variables</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10189#M4073</link>
      <description>&lt;P&gt;I'm probably not understanding what you're trying to accomplish, but if you're already putting the variable block in each recipe why not just pass it into the connector like any other argument?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 17:14:31 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/sdk-connector-capture-recipe-variables/m-p/10189#M4073</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2025-06-10T17:14:31Z</dc:date>
    </item>
  </channel>
</rss>

