<?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: Create Mashup URL with Initial Infotable Parameter in ThingWorx Developers</title>
    <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043057#M70910</link>
    <description>&lt;P&gt;this sounds better, indeed &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Nov 2025 14:13:13 GMT</pubDate>
    <dc:creator>nmutter</dc:creator>
    <dc:date>2025-11-12T14:13:13Z</dc:date>
    <item>
      <title>Create Mashup URL with Initial Infotable Parameter</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1042903#M70888</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am aware that you can set a mashup parameter using a URL for example:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;&amp;lt;THINGWORX&amp;gt;&amp;gt;/Mashups/TestMashup?&lt;/SPAN&gt;&lt;STRONG&gt;thingName=TestThing&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I have a use case where I would like to preload an infotable property into the URL. Is this possible? And if it is does anyone know the syntax?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Nov 2025 19:58:17 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1042903#M70888</guid>
      <dc:creator>JK_10744682</dc:creator>
      <dc:date>2025-11-11T19:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mashup URL with Initial Infotable Parameter</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043041#M70906</link>
      <description>&lt;P&gt;I tested with urlencoded serialized infotable and it worked&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;{"dataShape":{"fieldDefinitions":{"description":{"name":"description","description":"Entity description","baseType":"STRING","ordinal":0,"aspects":{}},"name":{"name":"name","description":"Entity name","baseType":"STRING","ordinal":0,"aspects":{"isPrimaryKey":true}}}},"rows":[{"description":"world","name":"Hello"}]}&lt;/LI-CODE&gt;
&lt;P&gt;url encoded:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://localhost/Thingworx/Runtime/index.html?mashup=Test&amp;amp;entities=%7B%22dataShape%22:%7B%22fieldDefinitions%22:%7B%22description%22:%7B%22name%22:%22description%22,%22description%22:%22Entity%20description%22,%22baseType%22:%22STRING%22,%22ordinal%22:0,%22aspects%22:%7B%7D%7D,%22name%22:%7B%22name%22:%22name%22,%22description%22:%22Entity%20name%22,%22baseType%22:%22STRING%22,%22ordinal%22:0,%22aspects%22:%7B%22isPrimaryKey%22:true%7D%7D%7D%7D,%22rows%22:%5B%7B%22description%22:%22world%22,%22name%22:%22Hello%22%7D%5D%7D" target="_blank"&gt;http://localhost/Thingworx/Runtime/index.html?mashup=Test&amp;amp;entities=%7B%22dataShape%22:%7B%22fieldDefinitions%22:%7B%22description%22:%7B%22name%22:%22description%22,%22description%22:%22Entity%20description%22,%22baseType%22:%22STRING%22,%22ordinal%22:0,%22aspects%22:%7B%7D%7D,%22name%22:%7B%22name%22:%22name%22,%22description%22:%22Entity%20name%22,%22baseType%22:%22STRING%22,%22ordinal%22:0,%22aspects%22:%7B%22isPrimaryKey%22:true%7D%7D%7D%7D,%22rows%22:%5B%7B%22description%22:%22world%22,%22name%22:%22Hello%22%7D%5D%7D&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and it did render my grid which bound the entities mashup parameter:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nmutter_0-1762952495874.png" style="width: 400px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/131016i7A94C4185FDF7213/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nmutter_0-1762952495874.png" alt="nmutter_0-1762952495874.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;mashup config:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nmutter_1-1762952619071.png" style="width: 400px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/131017i983998CB13DF9B65/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nmutter_1-1762952619071.png" alt="nmutter_1-1762952619071.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure if there is a more compact way for this. I dont think you can pass too much data to it via url this way...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe you could have some "landing" mashup which would navigate to your target mashup, passing wanted default parameters instead?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 13:04:48 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043041#M70906</guid>
      <dc:creator>nmutter</dc:creator>
      <dc:date>2025-11-12T13:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mashup URL with Initial Infotable Parameter</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043055#M70909</link>
      <description>&lt;P&gt;This did work, but I found for my case it was easier to send query parameters through the URL then call a query of the data in the mashup, rather than trying to push a large infotable of data through the URL.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 14:11:46 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043055#M70909</guid>
      <dc:creator>JK_10744682</dc:creator>
      <dc:date>2025-11-12T14:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mashup URL with Initial Infotable Parameter</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043057#M70910</link>
      <description>&lt;P&gt;this sounds better, indeed &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Nov 2025 14:13:13 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043057#M70910</guid>
      <dc:creator>nmutter</dc:creator>
      <dc:date>2025-11-12T14:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mashup URL with Initial Infotable Parameter</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043137#M70919</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/725078"&gt;@JK_10744682&lt;/a&gt;&amp;nbsp; would you please share the steps with which you have achieved desired behaviour so that it would be helpful for the community to easily understand if they have a similar query in the future. Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 05:31:59 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043137#M70919</guid>
      <dc:creator>MA8731174</dc:creator>
      <dc:date>2025-11-13T05:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Create Mashup URL with Initial Infotable Parameter</title>
      <link>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043215#M70925</link>
      <description>&lt;P&gt;Can either use the accepted answer for passing an infotable, but for my problem I simply passed parameters for a query through then queried the thingName + Property. Can use something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;&amp;lt;THINGWORX&amp;gt;&amp;gt;/Mashups/TestMashup?&lt;/SPAN&gt;&lt;STRONG&gt;thingName=TestThing&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 13:00:06 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/ThingWorx-Developers/Create-Mashup-URL-with-Initial-Infotable-Parameter/m-p/1043215#M70925</guid>
      <dc:creator>JK_10744682</dc:creator>
      <dc:date>2025-11-13T13:00:06Z</dc:date>
    </item>
  </channel>
</rss>

