Postman is an API platform for developers to design, build, test, and iterate their APIs.
In this article, will explain about Deleting the Accounts Table row in the Dataverse environment from Postman.
Pre-requisite
Follow all the steps mentioned in the article mentioned above and then follow the below steps.
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 Delete Account record.
Step 3: Select DELETE and provide the below text to delete the Account record.
{{webapiurl}}accounts
(ProvideAccountRecordGUID)
Step 4: Provide the below values under Headers section.
OData-Version |
4.0 |
OData-MaxVersion |
4.0 |
Content-Type |
application/json |
Accept |
application/json |
Headers will look like the below.
Step 5: Click on Save and Send.
You can see a message 204 No Content, which means the request executed successfully and the Account record is deleted.
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?
Hope you have followed all the steps and deleted the Account Table row from Postman.
Like and share your valuable feedback on this article.