v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
Reference Tables

Upsert rows

Create or update rows in a Reference Table by their primary key values. If a row with the specified primary key exists, it is updated; otherwise, a new row is created.

post/api/v2/reference-tables/tables/{id}/rows

Path parameters

idstring required

Unique identifier of the reference table to upsert rows into

Request body

Example request

{
  "data": [
    {
      "attributes": {
        "values": {}
      },
      "id": "primary_key_value",
      "type": "row"
    }
  ]
}

Response

Rows created or updated successfully