General
Get a log of digital assets changes for the specified timeframe, ordered chronologically. Option is to get by specified item type and id.
Authorizations
Query parameters
itemIdstring · uuidOptional
Unique item identification number in UUID format, for which changelogs are added
ChangelogItemTypestring · enumOptionalPossible values:
optional filtering by changelog item type
limitinteger · min: 1RequiredDefault:
Maximum number of items to return
20
cursorstringOptional
String value used for pagination
orderDirectionstring · enumOptionalDefault:
order direction
ASC
Possible values: startDatestring · date-timeOptionalExample:
The left boundary of [startDateTime - endDateTime]
changelog entries date-time range
2019-04-12T23:20:50.52Z
endDatestring · date-timeOptionalExample:
The right boundary of [startDateTime - endDateTime]
changelog entries date-time range
2019-05-12T23:20:50.52Z
Responses
200
OK
application/json
get
GET /digital-changelog HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
200
OK
{
"data": [
{
"itemType": "Order",
"entryId": "123e4567-e89b-12d3-a456-426614174000",
"itemId": "123e4567-e89b-12d3-a456-426614174000",
"createdOn": "2025-07-10T03:51:02.264Z",
"changes": [
{
"type": "REPLACE",
"path": "/legalEntity/contact/email",
"oldValue": "[email protected]",
"value": "[email protected]"
}
],
"source": "PARTNER_SYSTEM"
}
],
"pagination": {
"cursor": "text",
"limit": 1
}
}
Last updated