Is there anyway to complete a PATCH request rather than a PUT request? Is there any reason why PATCH requests are not already integrated?
For example, to update a user’s email or birthday I would like to send a PATCH request to a /users/{id} endpoint.
Obviously, I could use a PUT request as long as I cache/refresh all of the user profile data, however a PATCH request would really simplify the data flow/logic AND also reduce the amount of data ingress/egress required for my app/API.