Delete Request not working

I am trying post man out with a restful web api I created in .net core using entity framework. All of the other requests work fine except for the delete request. I was wondering if I could get some suggestions on how to troubleshoot this issue. Thanks !

You can view the request and response details in the Postman Console. https://www.getpostman.com/docs/v6/postman/sending_api_requests/debugging_and_logs

1 Like

Thanks for your help !

For those having the same issue, try putting a “/” at the end of the path, like “{{URL}}/api/users/delete/14/”. De DELETE must have an exact path match and RESTFUL APIs can end delete paths with the /

2 Likes

(post deleted by author)

Three years after your answer, it helped me identify the problem! Thanks!