Get partner documents not connected to single customer. For example reports. By default, it returns last 20 documents. It is possible to send query parameters to adjust the result.
Type of document. For example TERMS_AND_CONDITIONS.
Beginning of the range. Document create date time is after this parameter.
End of the range. Document create date time is before this parameter.
Used to filter active documents.
String value used for pagination
Maximum number of items to return
20Get single partner document for given documentId.
Id of document
OK
Not Found
Download document file for given documentId.
Id of document
OK
Not Found
OK
Not Found
No content
GET /partner-documents?limit=20 HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"documentId": "123e4567-e89b-12d3-a456-426614174000",
"size": 1,
"version": 1,
"validFrom": "2025-12-14",
"validUntil": "2025-12-14",
"name": "text",
"type": "TERMS_AND_CONDITIONS",
"description": "text",
"createdOn": "2025-12-14T18:27:10.007Z",
"modifiedOn": "2025-12-14T18:27:10.007Z"
}GET /partner-documents/{documentId} HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
GET /partner-documents/{documentId}/file HTTP/1.1
Host: tvda-api.platform-test.tradevest.ai
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"data": [
{
"documentId": "123e4567-e89b-12d3-a456-426614174000",
"size": 1,
"version": 1,
"validFrom": "2025-12-14",
"validUntil": "2025-12-14",
"name": "text",
"type": "TERMS_AND_CONDITIONS",
"description": "text",
"createdOn": "2025-12-14T18:27:10.007Z",
"modifiedOn": "2025-12-14T18:27:10.007Z"
}
],
"pagination": {
"cursor": "text",
"limit": 1
}
}