Get document attribute's versions
GET/documents/:documentId/attributes/:attributeKey/versions
Get a listing of a document's attribute versions; available as an Add-On Module
Request
Path Parameters
Document Identifier
Attribute Key
Query Parameters
Site Identifier
Limit Results
10
Next page of results token
Responses
- 200
200 OK
Response Headers
Access-Control-Allow-Origin
string
Access-Control-Allow-Methods
string
Access-Control-Allow-Headers
string
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Next page of results token
attributes
object[]
List of document attribute versions
Attribute key
Attribute with string value
Attribute with string values
Attribute with number value
Attribute with number values
Attribute with boolean value
Inserted Timestamp
User who added attribute
Attribute Value Type
Possible values: [BOOLEAN
, KEY_ONLY
, NUMBER
, STRING
, PUBLICATION
, CLASSIFICATION
, COMPOSITE_STRING
, RELATIONSHIPS
, WATERMARK
]
{
"next": "string",
"attributes": [
{
"key": "string",
"stringValue": "string",
"stringValues": [
"string"
],
"numberValue": 0,
"numberValues": [
0
],
"booleanValue": true,
"insertedDate": "string",
"userId": "string",
"valueType": "BOOLEAN"
}
]
}