cURL – DELETE request examples

To send a DELETE request, uses cURL -X DELETE

Terminal

$ curl -X DELETE http://localhost:8080/user/100

The above example will delete a user where user id is 100.

References

  1. cURL official website
  2. cURL – POST request examples

mkyong

Founder of Mkyong.com, passionate Java and open-source technologies. If you enjoy my tutorials, consider making a donation to these charities.

2 Comments
Most Voted
Newest Oldest
Inline Feedbacks
View all comments
manzar aqeel
5 years ago

How to delete multiple user id like user id 100, 101,102

henry
4 years ago
Reply to  manzar aqeel

a. client side loop
b. query parameter with ids
c. (not supported by all) request body with ids
d. (soft delete) put