top of page

Postman Tutorial

DELETE Request In Postman

What Is The DELETE Request In Postman ?

To delete an existing entry in RESTful web service, we use http DELETE method.

Steps :
  • Create a new request.

  • Select DELETE method.

  • Enter baseurl and pass user id with the base url using '/'.

http://localhost:8080/msg/webapi/userProfiles/Elsa Profile​

  • Save it and Send.

​​

Example :



Output : ​ ​ ​ ​ ​




bottom of page