Entity Management
Getting changes between Versions
This returns the changes, or edits, between different versions of an Entity. These changes are returned as an array of arrays. Between two Entities, there is an array of objects representing how each property changed. This change object contains the old and new values, as well as the property name.
get/v1/projects/{projectId}/datasets/{name}/entities/{uuid}/diffs
Path parameters
projectIdnumber required
The numeric ID of the Project
namestring required
Name of the Dataset
uuidstring required
UUID of the Entity
Response
- Response 200
Example response
[
[
{
"new": "John",
"old": "Jane",
"propertyName": "name"
}
]
]