Powerapps Portal - Fetchxml not working for adx_externalidentity dataverse table

Balamurugan Mani 21 Reputation points
2022-12-16T23:40:01.823+00:00

I am trying to get data from adx_externalidentity dataverse table. But it always return 0 count only. Below is my sample code.
{% fetchxml externalidentity %}
<fetch distinct="false" mapping="logical" output-format="xml-platform" version="1.0">
<entity name="adx_externalidentity">
<attribute name="adx_username"/>
<attribute name="createdon"/>
<attribute name="adx_identityprovidername"/>
<attribute name="adx_contactid"/>
<attribute name="adx_externalidentityid"/>
</entity>
</fetch>
{% endfetchxml %}
Total Records: {{externalidentity.results.entities.size}}
{% for item in externalidentity.results.entities %}
"Contactid": "{{ item.adx_contactid }}",
"adx_identityprovidername" : "{{item.adx_identityprovidername}}"
{% unless forloop.last %},{% endunless %}
{% endfor %}

Community Center | Not monitored
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2022-12-17T00:42:41.497+00:00

    Power apps is not currently supported here on Q&A. The product group for Power apps actively monitors questions over at
    https://powerusers.microsoft.com/t5/Power-Apps-Community/ct-p/PowerApps1

    --please don't forget to upvote and Accept as answer if the reply is helpful--

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.