Deleting a Resource

To delete an existing resource, use the HTTP DELETE request method.


Example: Delete a Service Request

DELETE http://myserver:5181/odata/ServiceRequest(139239)  HTTP/1.1

Expected Responses

  • 204 No Content → The delete operation was successful.
  • 404 Not Found → The specified resource was not found.
Back to top