Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

PUT (Upsert)

Rafael Carneiro de Moraes edited this page Dec 16, 2019 · 2 revisions
{
   "upsert": "your-table",
   "id": 123,
   "info": {
      "field1": "value1",
      "field2": "value2",
      "field3": "value3",
      ...
   }
}
  • The id attribute should be present. You cannot mass update.
  • The values should be the same as a SQL's update on your table, so lookup fields' value should be an ID.
  • If the given ID doesn't exist, a new row will be created. For creation, consider passing the required fields with the desired values.
Clone this wiki locally