1.4 Batch Operations

Multiple changes in one request (delta package).

PATCH Request

PATCH /api/v1/dsn/demo/tables/Customers
Content-Type: application/json
 
{
  "changes": [
    {
      "action": "insert",
      "data": { "Name": "New Customer", "Country": "DE" }
    },
    {
      "action": "update",
      "key": { "Id": 1 },
      "data": { "Name": "Updated" }
    },
    {
      "action": "delete",
      "key": { "Id": 99 }
    }
  ]
}

Actions

Action Description
insert Insert new record
update Modify existing record
delete Delete record

Use Case

Ideal for offline synchronization or DataGrid changes.

Zuletzt geändert: on 2026/01/29 at 11:29 PM