I create a restful DELETE service, for example, the URL is
http://localhost/book/10,
use DELETE method to send this request, but I need to record this operation by which user, so I need to send an operatorId parameter with that DELETE method request. How to build this delete url?
http://localhost/book/10?operatorId=10
or
http://localhost/book/10/operator-id/10
or other url.
Can you help me?