<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dataverse - Update, Select and Insert in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/121230#M4426</link>
    <description>&lt;P&gt;I'm seeing the below error while retrieving multiple records.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the filter parameter, im using OData query. ex: cra11_memid eq 0000&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="maneeshvemula1_0-1750880692752.png" style="width: 400px;"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/41120iB9D75784B897A73A/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="maneeshvemula1_0-1750880692752.png" alt="maneeshvemula1_0-1750880692752.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;What could be the reason for this error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Jun 2025 19:45:42 GMT</pubDate>
    <dc:creator>maneesh.vemula1</dc:creator>
    <dc:date>2025-06-25T19:45:42Z</dc:date>
    <item>
      <title>Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52352#M589</link>
      <description>&lt;SPAN&gt;Hi All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Has anyone tried the Microsoft Dataverse vbo? &lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/microsoft-dataverse?_ga=2.42148453.1583931956.1670860380-90459385.1591823642&amp;amp;_gl=1*tppkrv*_ga*OTA0NTkzODUuMTU5MTgyMzY0Mg..*_ga_MFBQ2KFZ1L*MTY3MTA0MzMwMS45My4xLjE2NzEwNDQ4NTcuNTguMC4w" target="_blank" rel="noopener"&gt;DX Asset&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Please can any one give me a resolution or an idea how to use this&amp;nbsp; to extract, update and insert values to the Dataverse&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ankita Karnany&lt;BR /&gt;Principal Consultant&lt;BR /&gt;Agilisys&lt;BR /&gt;London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Dec 2022 19:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52352#M589</guid>
      <dc:creator>anmaheswa</dc:creator>
      <dc:date>2022-12-14T19:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52353#M590</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/827"&gt;@anmaheswa&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;You'll want to familiarize yourself with Microsoft's &lt;A href="https://learn.microsoft.com/en-us/power-apps/developer/data-platform/webapi/overview?view=dataverse-latest" target="_blank" rel="noopener"&gt;Dataverse Web API&lt;/A&gt; documentation. I would suggest looking over the &lt;STRONG&gt;Samples&lt;/STRONG&gt; and &lt;STRONG&gt;Web API Reference&lt;/STRONG&gt; sections. These provide lots of information about working with Dataverse which you can subsequently leverage as you work with the BP connector for Dataverse.&lt;BR /&gt;&lt;BR /&gt;As an example, let's say I want to create a new account entry in Dataverse. I might take a look at &lt;A href="https://learn.microsoft.com/en-us/power-apps/developer/data-platform/webapi/create-entity-web-api#bkmk_basicCreate" target="_blank" rel="noopener"&gt;this sample&lt;/A&gt; from the Microsoft documentation​ and see that it basically maps to the &lt;EM&gt;&lt;STRONG&gt;Create a record&lt;/STRONG&gt;&lt;/EM&gt; action of the BP connector. All I need to do is pass in &lt;STRONG&gt;accounts&lt;/STRONG&gt; as the name of the Dataverse table (aka Entity) and a JSON blob containing the account details (a simple example is included in the Microsoft sample referenced above). Here's a sample account payload:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;{
    "name": "Sample Account",
    "creditonhold": false,
    "address1_latitude": 47.639583,
    "description": "This is the description of the sample account",
    "revenue": 5000000,
    "accountcategorycode": 1
}​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;FYI - The filter parameter is only actually used with the &lt;EM&gt;&lt;STRONG&gt;Retrieve a particular record&lt;/STRONG&gt;&lt;/EM&gt; and &lt;EM&gt;&lt;STRONG&gt;Retrieve multiple records&lt;/STRONG&gt;&lt;/EM&gt; actions.&lt;/P&gt;
Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Dec 2022 21:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52353#M590</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-12-14T21:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52354#M591</link>
      <description>Hi Eric&lt;BR /&gt;&lt;BR /&gt;I am trying to use the action 'Retrieve a particular record'.&lt;BR /&gt;&lt;BR /&gt;I am passing the following in:&lt;BR /&gt;&lt;BR /&gt;table name : scheme&lt;BR /&gt;URL: &lt;A href="https://testrpadev.crm11.dynamics.com/" target="test_blank"&gt;https://testrpadev.crm11.dynamics.com/&lt;/A&gt;&lt;BR /&gt;key : 10eb5d21-2ca6-4b75-baad-86f385c4f932&lt;BR /&gt;&lt;BR /&gt;no filter is required and the access token is valid.&lt;BR /&gt;&lt;BR /&gt;When running the action, it says 'Unexpected error'. No HTTP Status is returned so I assume, no request is sent outbound.&lt;BR /&gt;&lt;BR /&gt;What am I doing wrong?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jonathan Pringle&lt;BR /&gt;RPA Developer&lt;BR /&gt;Agilisys&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 11:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52354#M591</guid>
      <dc:creator>JonathanPringle</dc:creator>
      <dc:date>2022-12-15T11:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52355#M592</link>
      <description>Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="f4cc940e-4f24-4aa0-b83d-87d3d1325b30" data-tag-text="@Jonathan Pringle" href="https://community.blueprism.com/network/profile?UserKey=f4cc940e-4f24-4aa0-b83d-87d3d1325b30" data-itemmentionkey="5457eced-2284-470b-aacf-e503ab9bb764"&gt;@Jonathan Pringle&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Based on what I see in the Web API definition you should try your URL without the trailing "/". Pass it in as &lt;STRONG&gt;&lt;A href="https://testrpadev.crm11.dynamics.com" target="test_blank"&gt;https://testrpadev.crm11.dynamics.com&lt;/A&gt;&lt;/STRONG&gt;.​ Following is a screenshot of the &lt;STRONG&gt;Base URL&lt;/STRONG&gt; setting in the Web API. You can see that it takes what you pass in as the Dynamics365URL value and appends &lt;STRONG&gt;/api/data/v9.2&lt;/STRONG&gt; to it. So, if you include a trailing "/" you'll end up with an invalid URL.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6270.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6460i3AE6BC9238AA95DD/image-size/large?v=v2&amp;amp;px=999" role="button" title="6270.png" alt="6270.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52355#M592</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-12-15T15:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52356#M593</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;I removed the trailing slash but unfortunately, the same error.&lt;BR /&gt;&lt;BR /&gt;the BP wrapper should build the URL into this:&lt;BR /&gt;&lt;EM&gt;&lt;A href="https://testrpadev.crm11.dynamics.com/api/data/v9.2/scheme(10eb5d21-2ca6-4b75-baad-86f385c4f932)" target="test_blank"&gt;https://testrpadev.crm11.dynamics.com/api/data/v9.2/scheme(10eb5d21-2ca6-4b75-baad-86f385c4f932)&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;I have even added a filter but that didnt work either.&lt;BR /&gt;&lt;EM&gt;&lt;A href="https://testrpadev.crm11.dynamics.com/api/data/v9.2/scheme(10eb5d21-2ca6-4b75-baad-86f385c4f932)$select" target="test_blank"&gt;https://testrpadev.crm11.dynamics.com/api/data/v9.2/scheme(10eb5d21-2ca6-4b75-baad-86f385c4f932)$select&lt;/A&gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;This has got me stumped. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jonathan Pringle&lt;BR /&gt;RPA Developer&lt;BR /&gt;Agilisys&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 15:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52356#M593</guid>
      <dc:creator>JonathanPringle</dc:creator>
      <dc:date>2022-12-15T15:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52357#M594</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;you probably need to identify if it is Blue Prism or the API that is causing your issue. &amp;nbsp;Try running the API call using CURL command or Postmsn, outside of blue prism to test this.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I needed this API a while back before it was released so ended up making my own with Cosmos DB. You might get some tips from my asset here - &lt;A href="https://digitalexchange.blueprism.com/dx/entry/8797/solution/cosmos-db-table-rest-api" target="test_blank"&gt;https://digitalexchange.blueprism.com/dx/entry/8797/solution/cosmos-db-table-rest-api&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Peter Lacken&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;PeterLacken&lt;BR /&gt;Ren Røros Intelligent Automation&lt;BR /&gt;Peter.Lacken@rria.no&lt;BR /&gt;&lt;A href="http://www.rria.no" target="test_blank"&gt;http://www.rria.no&lt;/A&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 16:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52357#M594</guid>
      <dc:creator>peterlacken</dc:creator>
      <dc:date>2022-12-15T16:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52358#M595</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="f4cc940e-4f24-4aa0-b83d-87d3d1325b30" data-tag-text="@Jonathan Pringle" href="https://community.blueprism.com/network/profile?UserKey=f4cc940e-4f24-4aa0-b83d-87d3d1325b30" data-itemmentionkey="acd45ed8-ba7f-44ce-89b0-0511f9c60e98"&gt;@Jonathan Pringle&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Couple questions:&lt;BR /&gt;&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;Are you able to successfully get an authentication token?&lt;/LI&gt;
&lt;LI&gt;Have you tried capturing the network traffic using something like Fiddler?&lt;/LI&gt;
&lt;/OL&gt;
&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 16:33:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52358#M595</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-12-15T16:33:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52359#M596</link>
      <description>Hi Eric&lt;BR /&gt;Thanks for your reply.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Yes, I successfully got an authentication token, so in that sense Blue Prism is working successfully there.&lt;BR /&gt;&lt;BR /&gt;Its the Data retrieval that's proving to be awkward.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jonathan Pringle&lt;BR /&gt;RPA Developer&lt;BR /&gt;Agilisys&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 16:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52359#M596</guid>
      <dc:creator>JonathanPringle</dc:creator>
      <dc:date>2022-12-15T16:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52360#M597</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="f4cc940e-4f24-4aa0-b83d-87d3d1325b30" data-tag-text="@Jonathan Pringle" href="https://community.blueprism.com/network/profile?UserKey=f4cc940e-4f24-4aa0-b83d-87d3d1325b30" data-itemmentionkey="3ae74e48-7b89-48a0-8da6-1d2921502874"&gt;@Jonathan Pringle&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Going back over the Web API definition and I think I know what might be the issue. Even though you're getting a token back from the authentication VBO and passing that in to the Web API it seems the Web API isn't actually doing anything with it. 🤦‍&lt;span class="lia-unicode-emoji" title=":male_sign:"&gt;♂️&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Here's a test you can run.&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;Open the Web API definition in Blue Prism (&lt;STRONG&gt;System&lt;/STRONG&gt; -&amp;gt; &lt;STRONG&gt;Objects&lt;/STRONG&gt; -&amp;gt; &lt;STRONG&gt;Web API Services&lt;/STRONG&gt; -&amp;gt; &lt;STRONG&gt;Microsoft Dataverse&lt;/STRONG&gt;)&lt;/LI&gt;
&lt;LI&gt;Verify there's a data item defined in &lt;STRONG&gt;Common Parameters&lt;/STRONG&gt; titled &lt;STRONG&gt;access_token&lt;/STRONG&gt;.&lt;/LI&gt;
&lt;LI&gt;Go to &lt;STRONG&gt;Common Headers&lt;/STRONG&gt; and create a new header as depicted below:&lt;/LI&gt;
&lt;/OL&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="6305.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6488i1279A9E79E47353F/image-size/large?v=v2&amp;amp;px=999" role="button" title="6305.png" alt="6305.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Click &lt;STRONG&gt;OK&lt;/STRONG&gt; to save the change and run your test again.&lt;BR /&gt;&lt;BR /&gt;​Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 17:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52360#M597</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-12-15T17:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52361#M598</link>
      <description>Hi Eric,&lt;BR /&gt;&lt;BR /&gt;As suggested by you, I ensured &lt;SPAN&gt;&amp;nbsp;there's a data item defined in&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Common Parameters&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;titled&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;access_token&lt;/STRONG&gt;&lt;SPAN&gt;. Please refer the screenshot below&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6309.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6490i8BB6F041B878EC4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="6309.png" alt="6309.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Also, I have created a new header under common header's&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6310.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6489iA1691A6D4873731A/image-size/large?v=v2&amp;amp;px=999" role="button" title="6310.png" alt="6310.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Not sure if I am missing something, basic ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ankita Karnany&lt;BR /&gt;Principal Consultant&lt;BR /&gt;Agilisys&lt;BR /&gt;London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 18:31:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52361#M598</guid>
      <dc:creator>anmaheswa</dc:creator>
      <dc:date>2022-12-15T18:31:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52362#M599</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/827"&gt;@anmaheswa&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Now that you have the Authorization header are you able to execute requests against Dataverse?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 18:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52362#M599</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-12-15T18:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52363#M600</link>
      <description>I am stuck with this error now, the first screenshot is while trying to retrieve multiple records and the second one while trying to create a record.&lt;BR /&gt;Seems to be like an user authorization issue, I guess the AD user needs to be provided the necessary permissions on the dataverse side?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6321.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6504i0875AB41AEDB6F2E/image-size/large?v=v2&amp;amp;px=999" role="button" title="6321.png" alt="6321.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6322.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6505i913BE67613BB073A/image-size/large?v=v2&amp;amp;px=999" role="button" title="6322.png" alt="6322.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ankita Karnany&lt;BR /&gt;Principal Consultant&lt;BR /&gt;Agilisys&lt;BR /&gt;London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 19:05:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52363#M600</guid>
      <dc:creator>anmaheswa</dc:creator>
      <dc:date>2022-12-15T19:05:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52364#M601</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/827"&gt;@anmaheswa&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I'm not deeply versed in Dataverse or Dynamics 365, but yes according to the error message it appears the client credentials don't have the appropriate permissions.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Dec 2022 23:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52364#M601</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-12-15T23:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52365#M602</link>
      <description>That's correct, some security roles were missing. That's all sorted now and we have been able to work with data verse. Appreciate your quick response and constant help on this. Thanks a lot&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ankita Karnany&lt;BR /&gt;Principal Consultant&lt;BR /&gt;Agilisys&lt;BR /&gt;London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Dec 2022 13:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52365#M602</guid>
      <dc:creator>anmaheswa</dc:creator>
      <dc:date>2022-12-20T13:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52366#M603</link>
      <description>&lt;P&gt;Hi Eric,&lt;/P&gt;
&lt;P&gt;Could you share an example of a &lt;EM&gt;&lt;STRONG&gt;Retrieve a particular record&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp; action. I tried a number of ways but have not been successful. I wanted to understand the value which needs to be passed in &lt;STRONG&gt;filter&lt;/STRONG&gt;? Many thanks in advance&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thanks, Ankita&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ankita Karnany&lt;BR /&gt;Principal Consultant&lt;BR /&gt;Agilisys&lt;BR /&gt;London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 03 Mar 2023 15:23:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52366#M603</guid>
      <dc:creator>anmaheswa</dc:creator>
      <dc:date>2023-03-03T15:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52367#M604</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/827"&gt;@anmaheswa&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;I don't have one myself, but I'm checking with the developer of the connector. Stay tuned.&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Mar 2023 17:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52367#M604</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2023-03-06T17:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52368#M605</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;/SPAN&gt;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/827"&gt;@anmaheswa&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;If you were trying to retrieve two columns(name &amp;amp; accountnumber) from a table called accounts with accountid as the key then set these inputs-&lt;/P&gt;
&lt;P&gt;[tablename] = "accounts"&lt;/P&gt;
&lt;P&gt;[key] = "accountid"&lt;/P&gt;
&lt;P&gt;[filter] = "$select=name,accountnumber"&lt;/P&gt;
&lt;P&gt;Note that filter is optional&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Shashank Kumar&lt;BR /&gt;DX Integrations Partner Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Singapore&lt;BR /&gt;+6581326707&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Mar 2023 15:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52368#M605</guid>
      <dc:creator>shashank.kumar280</dc:creator>
      <dc:date>2023-03-07T15:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52369#M606</link>
      <description>&lt;P&gt;Sorry I was away for sometime, thank you so much for your help&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ankita Karnany&lt;BR /&gt;Principal Consultant&lt;BR /&gt;Agilisys&lt;BR /&gt;London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Apr 2023 08:01:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52369#M606</guid>
      <dc:creator>anmaheswa</dc:creator>
      <dc:date>2023-04-03T08:01:00Z</dc:date>
    </item>
    <item>
      <title>RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52370#M607</link>
      <description>&lt;P&gt;Thanks Shashank, sorry I was away for sometime but I shall give it a go now.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ankita Karnany&lt;BR /&gt;Principal Consultant&lt;BR /&gt;Agilisys&lt;BR /&gt;London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 03 Apr 2023 08:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/52370#M607</guid>
      <dc:creator>anmaheswa</dc:creator>
      <dc:date>2023-04-03T08:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: RE: Dataverse - Update, Select and Insert</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/111259#M3580</link>
      <description>&lt;P&gt;Hi Ankita - How were you able to retrieve multiple records? I am seeing this below error:&lt;/P&gt;&lt;P&gt;Internal : Unexpected error Error during Web API HTTP Request&lt;BR /&gt;HTTP Status Code: 404&lt;BR /&gt;HTTP Response Content: {"error":{"code":"0x80060888","message":"Resource not found for the segment 'xxxx'."}}&lt;/P&gt;&lt;P&gt;I am able to get the access token. I just provided the table name. Do i need to give the prefix or use the plural version of the table name?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know! Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jun 2024 03:12:15 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Dataverse-Update-Select-and-Insert/m-p/111259#M3580</guid>
      <dc:creator>maneesh.vemula1</dc:creator>
      <dc:date>2024-06-06T03:12:15Z</dc:date>
    </item>
  </channel>
</rss>

