Sometimes user is not going to send data to the server to update a resource but the resource would be updated by the server automatically. I think the best example is deactivating a profile. I describe the example below.
Example: User is trying to deactivate his profile, so he makes a call to /users/{u_id}/deactivate
URI. In this example, user is not going to update anything actually, but the deactivated column would be updated by the server. What is the suitable HTTP method in this case?