
DELETE Method
The DELETE HTTP method is used to delete a resource to whose URL the client sends a request. In case of success, the DELETE HTTP method returns the HTTP response code 204 (DELETED).
In the example below, the DELETE HTTP request is used to delete the current logon session:
Request: DELETE http://localhost:9399/api/logonSessions/0e879be7-8854-4a54-990b-ec16e1c6d1ee
Response: 204 Deleted |