Versioning
Redeam uses a versioning scheme that allows for safe updates of data managed by third parties. Each data item is assigned a version
, an integer value which represents the current version of the item.
The version
must be included in the request payload when updating an item. This prevents “colliding writes” and the potential for data loss.
Note: A 409 Conflict
status code is returned if an item is updated with an out-of-date version
.
Was this page helpful?