Power Platform Toolkit

FetchXML Builder

Build Dataverse FetchXML queries without writing XML by hand. Configure your entity, attributes, filters, ordering, and link entities using the visual builder. The FetchXML output updates live on the right and can be copied directly into a Power Automate List Rows action or XrmToolBox.

Entity

Filters

Order By

Link Entities (Joins)

FetchXML Output
<fetch entity="account" top="50">
  <entity name="account">
    <attribute name="accountid" />
    <attribute name="name" />
    <attribute name="emailaddress1" />
    <attribute name="createdon" />
    <filter type="and">
      <condition attribute="statecode" operator="eq" value="0" />
    </filter>
    <order attribute="name" descending="false" />
  </entity>
</fetch>
Use this FetchXML in Power Automate List Rows actions, in a Dataverse connector, or directly in the XrmToolBox FetchXML Builder.