Multiple changes in one request (delta package).
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 } } ] }
| Action | Description |
|---|---|
insert | Insert new record |
update | Modify existing record |
delete | Delete record |
Ideal for offline synchronization or DataGrid changes.