SendAlertVO Data Type
| name | data type | description |
|---|---|---|
| eventKey | string | |
| loginReceiver | string | |
| object | GenericAlertObject | |
| place | GenericAlertObject | |
| actions | array of AlertActionVO | |
| metadata | map of string | |
| priority | string |
Example
{
"eventKey" : "...",
"loginReceiver" : "...",
"object" : {
"alertObjectLink" : "...",
"alertObjectDescription" : "...",
"alertObjectClass" : "...",
"alertObjectTypeDescriptionKey" : "...",
"alertObjectId" : 12345,
"alertObjectDetailKey" : "...",
"alertObjectNote" : "..."
},
"place" : {
"alertObjectLink" : "...",
"alertObjectDescription" : "...",
"alertObjectClass" : "...",
"alertObjectTypeDescriptionKey" : "...",
"alertObjectId" : 12345,
"alertObjectDetailKey" : "...",
"alertObjectNote" : "..."
},
"actions" : [ {
"descriptionAfterExecKey" : "...",
"actionType" : "MAIN",
"url" : "...",
"description" : "...",
"type" : "NONE",
"descriptionAfterExec" : "...",
"executed" : true,
"id" : 12345,
"integrationType" : "HTTP",
"actionKey" : "...",
"descriptionKey" : "...",
"httpMethod" : "..."
}, {
"descriptionAfterExecKey" : "...",
"actionType" : "MAIN",
"url" : "...",
"description" : "...",
"type" : "HTTP",
"descriptionAfterExec" : "...",
"executed" : true,
"id" : 12345,
"integrationType" : "HTTP",
"actionKey" : "...",
"descriptionKey" : "...",
"httpMethod" : "..."
} ],
"metadata" : {
"property1" : "...",
"property2" : "..."
},
"priority" : "..."
}