LogoLogo
  • Home Page
  • Documentation
    • API Overview
    • Partner API Authentication
    • Onboarding
    • Partner Webhooks
    • Status Codes for Financial Operations
    • Prices
  • WEBSOCKETS
    • Websocket Prices
      • Prices
      • Schemas
  • API REFERENCE
    • Authorization
      • Schemas
    • User Management
      • Users
      • Schemas
    • Customers
      • General
      • Legal Entities
      • Natural Persons
      • Customer Labels
      • Search Nace Sectors
      • Onboarding Wizard
      • Schemas
    • Documents
      • Documents
      • Schemas
    • Onboardings
      • Onboarding
      • Offboarding
      • Schemas
    • Products
      • General
      • Schemas
    • Asset Management
      • Trading
        • Assets
        • Schemas
      • Digital assets
        • Create Order
        • General
        • Assets
        • Schemas
      • Strategy
        • Schemas
    • Transaction History
      • Schemas
    • Transfers
      • General
      • Create Incoming Test Transfer
      • Schemas
    • Partner Documents
      • Schemas
    • Webhooks
      • Schemas
  • PARTNER APIS
    • Partner Webhooks
      • Schemas
Powered by GitBook
On this page
  1. API REFERENCE
  2. Products

General

Last updated 6 days ago

Get Changelog

get

Get a log of products 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 · enumOptional

optional filtering by changelog item type

Possible values:
limitinteger · min: 1Required

Maximum number of items to return

Default: 20
cursorstringOptional

String value used for pagination

orderDirectionstring · enumOptional

order direction

Default: ASCPossible values:
startDatestring · date-timeOptional

The left boundary of [startDateTime - endDateTime] changelog entries date-time range

Example: 2019-04-12T23:20:50.52Z
endDatestring · date-timeOptional

The right boundary of [startDateTime - endDateTime] changelog entries date-time range

Example: 2019-05-12T23:20:50.52Z
Responses
200
OK
application/json
get
GET /products-changelog HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Accept: */*
200

OK

{
  "data": [
    {
      "itemType": "CUSTOMER_PRODUCT",
      "customerId": "123e4567-e89b-12d3-a456-426614174000",
      "entryId": "123e4567-e89b-12d3-a456-426614174000",
      "itemId": "123e4567-e89b-12d3-a456-426614174000",
      "createdOn": "2025-05-23T02:17:25.452Z",
      "changes": [
        {
          "type": "REPLACE",
          "path": "/legalEntity/contact/email",
          "oldValue": "old_email@example.com",
          "value": "new_email@example.com"
        }
      ],
      "source": "PARTNER_SYSTEM"
    }
  ],
  "pagination": {
    "cursor": "text",
    "limit": 1
  }
}