Skip to main content

Is there a way to 'patch' a record?

  • April 17, 2016
  • 2 replies
  • 17 views

If I PUT a record without including every field, those missing fields are emptied losing the data that they held.
Is there a way to PATCH a record by only supplying the modified fields ensuring the rest are untouched?

2 replies

Forum|alt.badge.img+2
  • Known Participant
  • April 18, 2016

Yes. Have a look at the api documentation for your base. For each table there is a section called “Update a record”. This describes how to do a curl PATCH.


  • Author
  • New Participant
  • April 19, 2016

Perfect! Works like a charm. Thanks.