<?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>Get all Application objects and their respective UUID</title><link>https://community.appian.com/discussions/f/user-interface/39568/get-all-application-objects-and-their-respective-uuid</link><description>Is there a way to get the list of all application objects we have in Appian via expression rule? I want the create a csv file with all objects and their corresponding UUID.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Get all Application objects and their respective UUID</title><link>https://community.appian.com/thread/150699?ContentTypeID=1</link><pubDate>Tue, 05 Aug 2025 16:24:03 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:011e1396-09a6-4c62-b374-abd147d16f58</guid><dc:creator>sanjuktab2257</dc:creator><description>&lt;p&gt;Thank you everyone for your insights. This is how I was able to obtain the UUIDs and respective object name:&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1754410851154v1.png" alt=" " /&gt;&lt;pre class="ui-code" data-mode="python"&gt;pip install lxml
from lxml import objectify
from lxml import etree
import xml.etree.ElementTree as ET
import pandas as pd

def parse_element(element, item, uuid_map):
    # If the element has no children, store its text
    if len(list(element)) == 0:
        item[element.tag] = element.text
    else:
        # Special handling for &amp;lt;item&amp;gt; elements with &amp;lt;type&amp;gt; and &amp;lt;uuids&amp;gt;
        if element.tag == &amp;quot;item&amp;quot;:
            type_value = None
            uuids = []

            for child in element:
                if child.tag == &amp;quot;type&amp;quot;:
                    type_value = child.text
                elif child.tag == &amp;quot;uuids&amp;quot;:
                    uuids = [uuid.text for uuid in child.findall(&amp;quot;uuid&amp;quot;)]

            if type_value and uuids:
                uuid_map[type_value] = uuids

        # Continue recursion
        for child in element:
            parse_element(child, item, uuid_map)
            

tree = etree.parse(&amp;quot;xmlfilepath.xml&amp;quot;) #Put the path of your xml path
root = tree.getroot()

item = {}
uuid_map = {}

parse_element(root, item, uuid_map)

print(&amp;quot;Flat data:&amp;quot;, item)
print(&amp;quot;UUIDs by type:&amp;quot;, uuid_map)

#Create the dataframe:
rows = []
for key, values in uuid_map.items():
    for value in values:
        rows.append({&amp;#39;Key&amp;#39;: key, &amp;#39;Value&amp;#39;: value})

df = pd.DataFrame(rows)

#Export the dataframe to csv:
df.to_csv(&amp;#39;uatUUID.csv&amp;#39;, index = False)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get all Application objects and their respective UUID</title><link>https://community.appian.com/thread/150698?ContentTypeID=1</link><pubDate>Tue, 05 Aug 2025 15:59:41 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:90ea264e-0028-44a2-acd9-cda7120ec987</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;Deprecated plugins are not available.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get all Application objects and their respective UUID</title><link>https://community.appian.com/thread/150697?ContentTypeID=1</link><pubDate>Tue, 05 Aug 2025 15:56:29 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:548861b4-dff9-4915-adbe-5e4077cbc8c0</guid><dc:creator>Jesse Knight</dc:creator><description>&lt;p&gt;Do you have a link to a page for it? I could see it being useful for some automated testing in QA, but it definitely seems like the kind of thing that should not go into production.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get all Application objects and their respective UUID</title><link>https://community.appian.com/thread/150696?ContentTypeID=1</link><pubDate>Tue, 05 Aug 2025 15:54:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:212d0e10-ac8f-477d-9110-c7f9b088f1b5</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;This seems to be a deprecated plugin.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get all Application objects and their respective UUID</title><link>https://community.appian.com/thread/150695?ContentTypeID=1</link><pubDate>Tue, 05 Aug 2025 15:52:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:30feba16-13c2-430d-9df6-944d0092faa0</guid><dc:creator>Jesse Knight</dc:creator><description>&lt;p&gt;It is possible with a plugin function &lt;code&gt;getappobjectuuids()&lt;/code&gt;. I&amp;#39;m not sure where the &amp;quot;GetObjects&amp;quot; plugin comes from though, since it pre-dates my current role.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1754409021653v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/13/pastedimage1754409114222v2.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get all Application objects and their respective UUID</title><link>https://community.appian.com/thread/150660?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 19:10:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:4389b421-939f-4e08-81b6-77f57e53b041</guid><dc:creator>Shubham Aware</dc:creator><description>&lt;p&gt;NO built-in expression rule that lists all application objects and their UUIDs in one step.&lt;br /&gt; However, you can achieve this by exporting your application package, unzipping it, and accessing the folder structure - each XML file inside represents an object and contains its UUID. You can then parse these files to extract the UUIDs and object names. Then you can feed this data into a data store and use Export to CSV features in a process model to export reports as CSV files.&lt;br /&gt;&lt;br /&gt;Quick Reference Links:&lt;br /&gt;&lt;a href="https://docs.appian.com/suite/help/25.2/reference-structure.html"&gt;https://docs.appian.com/suite/help/25.2/reference-structure.html&lt;/a&gt;&lt;br /&gt;&lt;a href="/b/appmarket/posts/content-tools"&gt;https://community.appian.com/b/appmarket/posts/content-tools&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get all Application objects and their respective UUID</title><link>https://community.appian.com/thread/150658?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 18:59:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:2ac1ace1-7fdf-413d-b595-14f6d4d6256d</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;What do you want to achieve?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Get all Application objects and their respective UUID</title><link>https://community.appian.com/thread/150657?ContentTypeID=1</link><pubDate>Mon, 04 Aug 2025 18:57:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:6b5b230f-6d7d-4093-8962-08359e582a89</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;I don&amp;#39;t believe there&amp;#39;s any automated functionality to handle this.&amp;nbsp; If it&amp;#39;s a one-time need, you could look into exporting everything and then looking at the UUID&amp;#39;s contained in the zip file, though it might not be easy to back-translate all UUIDs to the regular readable object names.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>