[GET] /variants
/api/dms/objects/{objectId}/native/variants
Description | To retrieve the metadata of all variants of the specified DMS object, send a request with the |
---|---|
Request | GET |
Request Optional |
|
Response | JSON |
Minimum Version | 3.1.0 |
Changelog |
|
Request |
|
Result | {
"objects": [{
"properties": {
"system:objectId": {
"value": 58652
},
"system:objectTypeId": {
"value": 262236
},
"system:variantVersion": {
"value": "Original"
},
"system:variantActive": {
"value": false
},
"system:variantOriginId": {
"value": 0
},
"field1": {
"value": "value of the field"
},
"field2": {
"value": "value of the field"
},
"system:creationDate": {
"value": "2022-01-17T12:25:07Z"
},
"system:createdBy": {
"value": "ROOT"
}
}
},{
"properties": {
"system:objectId": {
"value": 75138
},
"system:objectTypeId": {
"value": 262236
},
"system:variantVersion": {
"value": "1.0.0"
},
"system:variantActive": {
"value": true
},
"system:variantOriginId": {
"value": 58652
},
"field1": {
"value": "value of the field"
},
"field2": {
"value": "value of the field"
},
"system:creationDate": {
"value": "2022-01-25T08:13:38Z"
},
"system:createdBy": {
"value": "ROOT"
}
}
}]
} |