When to use the http patch method? [duplicate]

4

I did some research on the PATCH method, and I saw that it makes partial modifications, but I did not really understand when to use it and what its difference to PUT .

I'm looking for a practical example of how / when and why to use the PATCH method since in many places it has only one definition, I found a very interesting material maybe I even answered my question.

Source: link

    
asked by anonymous 25.04.2016 / 22:15

1 answer

3

PUT when modifying all attributes. PATCH when modifying one or some attributes, but not all.

More information: link

    
25.04.2016 / 22:22