...
Page Properties |
---|
| Status | Status |
---|
---|
colour | Yellow |
---|
title | PROGRESS |
---|
Priority | 1 |
---|
Note | Assignee | Antje |
---|
Ressources
concept article linking to the respective tutorials | Product Version |
|
---|
Report Note |
|
---|
Assignee |
|
---|
Resources & Remarks Modification History Name | Date | Product Version | Action |
---|
Antje | 08 FEB 2021 | 2.4 | New page properties macro. |
|
Please exchange the previous denomination (object.insert.document) by the current denomination (dms.response.insert). The old denomination will not be supported in yuuvis® Momentum 2.4 anymore.
Response Format | JSONAs of Version | 2019 Winter |
---|
Description | Object creation events can trigger this AMQP Hook with the corresponding object properties in its body. |
---|
Example Predicate | 1) reaction to every object creation:
spel:true 2) reaction to every object creation having a content range attribute:
spel:contentStreams[0]['range'].length() > 0 3) reaction to every object creation without content:
spel:options['action']=100 |
---|
Action Codes - History Codes | 101 - OBJECT_CREATED_WITH_CONTENT 100 - OBJECT_CREATED |
---|
Example ResponseMessage |
Code Block |
---|
| {
"objects": [
{
"properties": {
"system:objectId": {
"value": "333c226c-3a44-5e66-7777-8d999a0000e1"
},
"system:baseTypeId": {
"value": "system:document"
},
"system:objectTypeId": {
"value": "document"
},
"system:createdBy": {
"value": "111c226c-3a44-5e66-7777-8d999a0000e1"
},
"system:creationDate": {
"value": "2020-09-16T16:57:40.780Z"
},
"system:lastModifiedBy": {
"value": "111c226c-3a44-5e66-7777-8d999a0000e5"
},
"system:lastModificationDate": {
"value": "2020-09-16T16:57:40.780Z"
},
"system:versionNumber": {
"value": 1
},
"system:tenant": {
"value": "default"
},
"system:traceId": {
"value": "1234567887654321"
},
"Name": {
"value": "test.eml"
}
},
"contentStreams": [
{
"contentStreamId": "0AB98765-CDEF-4321-ABCD-098EF76AB543",
"archivePath": "default/DOCUMENT/32/15/7/",
"length": 82683,
"mimeType": "message/rfc822",
"fileName": "test.eml",
"digest": "12345678123456781234567812345678123456781234567812345678",
"range": "1234-12345,123456-123458,123489-234567,245678-345678",
"repositoryId": "repo252"
}
],
"options": {
"action": 101,
"detail": "OBJECT_CREATED_WITH_CONTENT"
}
}
]
} |
|
---|
...