<?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>Create event</title><link>https://community.appian.com/discussions/f/integrations/19631/create-event</link><description>test</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Create event</title><link>https://community.appian.com/thread/76720?ContentTypeID=1</link><pubDate>Thu, 24 Sep 2020 21:41:36 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:0054eff1-4246-428b-b39d-7d90040d5424</guid><dc:creator>Peter Lewis</dc:creator><description>&lt;p&gt;I&amp;#39;m assuming you want to allow the email address to have multiple items? If so, you can use a!forEach() to create a list of multiple items like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;attendees: a!forEach(
  items: ri!emailAddress,
  expression: {
    emailAddress: {
      address: fv!item,
      name: index(ri!emailAddress, fv!index, &amp;quot;&amp;quot;)
    }
  }
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;The a!forEach() function iterates over a list of values, so you can use fv!item to reference the value of the email address. However, since your name is in a separate variable, you have to use the index function to find the item at the corresponding index in that list. You can find more information about this function &lt;a href="https://docs.appian.com/suite/help/latest/fnc_looping_a_foreach.html"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>