<?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>Open site from URL with parameters</title><link>https://community.appian.com/discussions/f/general/19161/open-site-from-url-with-parameters</link><description>Hello, I need to open a site from a URL by passing parameters to that site from the URL. Is this possible to do? How could I do it? Thank you very much</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Open site from URL with parameters</title><link>https://community.appian.com/thread/75035?ContentTypeID=1</link><pubDate>Mon, 29 Jun 2020 11:35:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2df31d25-5c6f-4595-8dd7-6477af20aabb</guid><dc:creator>borjam0001</dc:creator><description>&lt;p&gt;Thanks for your reply again.&lt;br /&gt;We need to have a URL, which when clicking on it, takes us to a Site and fills in some fields of the Site with the parameters that we pass in the URL.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Open site from URL with parameters</title><link>https://community.appian.com/thread/75034?ContentTypeID=1</link><pubDate>Mon, 29 Jun 2020 11:08:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:712e0fde-84db-44dc-acb1-2b4c050c596f</guid><dc:creator>Arthur Lyrio</dc:creator><description>&lt;p&gt;Suggest you creating an Web API starting a process that shows the user the page you want to take him/her.&lt;br /&gt;&lt;br /&gt;You can use the&amp;nbsp;&lt;strong&gt;http!request.queryParameters.&amp;lt;parameterName&amp;gt;&lt;/strong&gt;&amp;nbsp;to get the parameter you want to get the value inside the process.&lt;strong&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;More information on:&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/20.2/Web_API_Tutorial.html"&gt;https://docs.appian.com/suite/help/20.2/Web_API_Tutorial.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Open site from URL with parameters</title><link>https://community.appian.com/thread/75028?ContentTypeID=1</link><pubDate>Mon, 29 Jun 2020 08:37:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6829700e-eb66-41f8-b33c-bc08a04ab3a8</guid><dc:creator>borjam0001</dc:creator><description>&lt;p&gt;Hi, thanks for your response.&lt;br /&gt;Our intention is to open an Appian Site by passing parameters in the URL and that from the interface of the Appian Site show those parameter values&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Open site from URL with parameters</title><link>https://community.appian.com/thread/75025?ContentTypeID=1</link><pubDate>Mon, 29 Jun 2020 08:12:24 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b03a7052-d9ab-497a-9dd0-b7c65b8c5b54</guid><dc:creator>Arthur Lyrio</dc:creator><description>&lt;p&gt;As a site, you&amp;nbsp;mean an Appian site? Or an external site?&lt;br /&gt;&lt;br /&gt;If you want to open a site and just pass by some parameters, you could use some query parameters:&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www.google.com/search?sxsrf=ALeKk01TObvHSwZQJhYQXf0shhmIPXgeOA%3A1593417955209&amp;amp;source=hp&amp;amp;ei=46D5XsvICs7B5OUPiaamgAI&amp;amp;q=query+parameters&amp;amp;oq=query+parameters&amp;amp;gs_lcp=CgZwc3ktYWIQAzICCAAyAggAMgIIADICCAAyAggAMgIIADICCAAyAggAMgIIADICCAA6BwgjEOoCECc6BAgjECc6BggjECcQEzoFCAAQgwE6BQgAELEDUN0JWLQdYNUgaAFwAHgAgAFsiAHFC5IBBDE1LjGYAQCgAQGqAQdnd3Mtd2l6sAEK&amp;amp;sclient=psy-ab&amp;amp;ved=0ahUKEwiLxsm5yKbqAhXOILkGHQmTCSAQ4dUDCAc&amp;amp;uact=5"&gt;https://www.google.com/search?q=query+parameters&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;As you can see, after the &lt;strong&gt;/search&lt;/strong&gt;&amp;nbsp;there&amp;#39;s a &lt;strong&gt;Q&lt;/strong&gt;, that indicates a parameter named &lt;strong&gt;Q&lt;/strong&gt;&amp;nbsp;(that refers to &lt;strong&gt;query)&amp;nbsp;&lt;/strong&gt;and means the query you did to google.&lt;br /&gt;If you change that, the google search page will&amp;nbsp;search for you&amp;nbsp;the topic you typed into.&lt;br /&gt;&lt;br /&gt;Then, if your site is ready to receive those parameters, just pass it on the URL as a query parameter.&lt;br /&gt;&lt;br /&gt;This link may help you:&amp;nbsp;&lt;a href="https://en.wikipedia.org/wiki/Query_string"&gt;https://en.wikipedia.org/wiki/Query_string&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Ps.:&lt;/p&gt;
&lt;p&gt;Remember that each link you type into your browser, you are doing a GET request and applying the concepts of a REST request and you can&amp;nbsp;send body parameters&amp;nbsp;as well, but they are preferable on POST like requests.&lt;br /&gt;&lt;br /&gt;Some other links:&lt;br /&gt;&lt;a href="https://www.moesif.com/blog/technical/api-design/REST-API-Design-Best-Practices-for-Parameters-and-Query-String-Usage/"&gt;https://www.moesif.com/blog/technical/api-design/REST-API-Design-Best-Practices-for-Parameters-and-Query-String-Usage/&lt;/a&gt;&lt;br /&gt;&lt;a href="https://stackoverflow.com/questions/22557399/restful-api-get-method-parameters"&gt;https://stackoverflow.com/questions/22557399/restful-api-get-method-parameters&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>