How to Update the Table row values in a Dataverse environment from Postman?

In this article, will explain about updating row values in Accounts Table in the Dataverse environment from Postman.

Follow all the steps mentioned in the below article and go to Step 1.

How to setup and connect to the Dataverse environment in Postman?

Step 1: Click on the Collection … and Click on Add request to create a new Web API Request.

Step 2: Click on the New Request and Click on Rename to change the Web API Request name.

Renamed to Update Account record.

Step 3: Select PATCH HTTP Verb and provide the below text to update the Account record.

{{webapiurl}}accounts(ProvideAccountRecordGUID)

Step 4: Provide the below values under Headers section.

If-Match*
OData-Version4.0
OData-MaxVersion4.0
Content-Typeapplication/json
Acceptapplication/json

Note: If-Match value set to * in the header, it ensures that it doesn’t create any new record by accidentally performing an upsert operation.

Headers will look likes the below.

Step 5: Click on Body, select raw and make sure that JSON is selected.

Step 6: Copy and paste the below JSON text to update Account’s Name and Description values.

{

    “name”: “Arun Potti – Microsoft – Updated”,

    “description”: “Record updated from Postman”

}

Step 6: Click on Save and Send.

You can see a message 204 No Content, which means the request executed successfully.

Note: If you see 401 Unauthorized access issue on Send, then follow the below article and fix the problem and try again.

How to resolve 401 Unauthorized access issue in Postman while connecting to Dataverse?

You can check the record updated information in the Advanced Find.

Hope you have followed all the steps and updated the Account Table row values from Postman.

Like and share your valuable feedback on this article.

Articles you might like related to Dynamics 365 CE.

How to Download and Install Postman on your PC?

How to setup and connect to the Dataverse environment in Postman?

How to retrieve records of a Dataverse environment in Postman?

How to retrieve a particular Table record of a Dataverse environment in Postman?

How to Create a Table record in a Dataverse environment from Postman?

How to create Microsoft Dynamics 365 CE Online 30 Days Trial Version?

How to create Users and Assign Security roles in Dynamics 365 CE Online?

How to load Dynamics 365 CE Online Environment faster?

How to Install, Connect to Microsoft Dataverse and Use XrmToolBox?


Discover more from Arun Potti's Power Platform blog

Subscribe to get the latest posts to your email.

Leave a Reply