<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Has anyone parsed Appian URL with parameters?</title><link>https://community.appian.com/discussions/f/data/10258/has-anyone-parsed-appian-url-with-parameters</link><description>I have a scenario in which i am passing parameters to Appian url to access it in another user form. 
 For ex- 
 https://&amp;lt;Company&amp;gt;.appiancloud.com/suite/tempo/actions/item/ProcessID? Param1=1234 
 I am not sure how to parse Param1=1234 and apply it to</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Has anyone parsed Appian URL with parameters?</title><link>https://community.appian.com/thread/45348?ContentTypeID=1</link><pubDate>Tue, 09 May 2017 15:10:39 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9da58542-2da6-4170-bf46-0f388428f579</guid><dc:creator>Josh</dc:creator><description>Right, you can use Web API&amp;amp;#x27;s to consume requests from external systems and initiate Appian processes.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Has anyone parsed Appian URL with parameters?</title><link>https://community.appian.com/thread/45346?ContentTypeID=1</link><pubDate>Tue, 09 May 2017 14:57:06 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f4a3bb00-6535-4659-8b16-1b4e9dfa046a</guid><dc:creator>ravinoors0001</dc:creator><description>In my situation, we are not launching the external system from Appian but its other way round, we want Appian process to be initiated from external system. So the request is actually coming from external system.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Has anyone parsed Appian URL with parameters?</title><link>https://community.appian.com/thread/45338?ContentTypeID=1</link><pubDate>Mon, 08 May 2017 23:33:55 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:554dd2c5-e782-48da-a3fa-1af1f8299fa1</guid><dc:creator>Josh</dc:creator><description>This page talks about Web API&amp;amp;#x27;s and gives an example: &lt;a href="https://docs.appian.com/suite/help/17.1/Web_APIs.html"&gt;docs.appian.com/.../Web_APIs.html&lt;/a&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Has anyone parsed Appian URL with parameters?</title><link>https://community.appian.com/thread/45336?ContentTypeID=1</link><pubDate>Mon, 08 May 2017 21:28:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:85336d77-1b4d-452a-a955-a331f850cd89</guid><dc:creator>ravinoors0001</dc:creator><description>Thank you Bene. Your solution sounds promising but i need to capture the current url along with parameters somewhere on the form load.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Has anyone parsed Appian URL with parameters?</title><link>https://community.appian.com/thread/45335?ContentTypeID=1</link><pubDate>Mon, 08 May 2017 21:27:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:e8eb3889-6f5a-45f7-8b93-dbea484a5498</guid><dc:creator>ravinoors0001</dc:creator><description>If i trigger an Appian Action from external system and would like to pass some data fields from that external system, can you give me any sample Web API example i can work off of. I don&amp;amp;#x27;t want to embed Appian task within external system but only Appian Action, just to trigger the process.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Has anyone parsed Appian URL with parameters?</title><link>https://community.appian.com/thread/45270?ContentTypeID=1</link><pubDate>Thu, 04 May 2017 20:56:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:8ae15328-6af5-4405-8df6-9c5793965c6d</guid><dc:creator>Josh</dc:creator><description>Are you talking about passing data from an external source into Appian and have that data populate in a form? If so, I recommend looking into Web API&amp;amp;#x27;s to capture the data you want to pass, and then including logic to push that data to an active task or to spawn a new task.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Has anyone parsed Appian URL with parameters?</title><link>https://community.appian.com/thread/45269?ContentTypeID=1</link><pubDate>Thu, 04 May 2017 20:38:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d4427a75-365c-4363-800d-d5a01b46f677</guid><dc:creator>Ben Edwards</dc:creator><description>You can use the split() function within Appian to parse a string like you are asking: &lt;a href="https://docs.appian.com/suite/help/17.1/fnc_text_split.html"&gt;docs.appian.com/.../fnc_text_split.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
split(&amp;quot;https://&amp;lt;Company&amp;gt;.appiancloud.com/suite/tempo/actions/item/ProcessID?Param1=1234&amp;quot;,&amp;quot;?&amp;quot;)&lt;br /&gt;
should return { &amp;quot;https://&amp;lt;Company&amp;gt;.appiancloud.com/suite/tempo/actions/item/ProcessID&amp;quot;,&amp;quot;Param1=1234&amp;quot; }&lt;br /&gt;
&lt;br /&gt;
Then you could split the second string in that list to get what you&amp;amp;#x27;re looking for.&lt;br /&gt;
&lt;br /&gt;
Not sure if that will help you in terms of being update to update via a form but it sounds like what you might be looking for.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>