DEV Community

Discussion on: Building Consistent RESTful APIs

Collapse
 
binarypatrick profile image
BinaryPatrick

Never heard of the UPDATE verb and don't see it in any specs..? Am I missing out on something here? developer.mozilla.org/en-US/docs/W...

Collapse
 
anthofo profile image
Anthony

Me neither, maybe it's the PATCH verb, and PUT creates or replaces a whole ressource, so it would give sth like:

  • PUT: update a transaction
  • PATCH: update a part of a transaction
Collapse
 
richardigbiriki profile image
Richard Igbiriki

Yes! Thank you, it is PUT and PATCH.