Wrapper entity with all the info to make an approval assign/unassign operations
| name | data type | description |
|---|---|---|
| name | string | name of the approval (required) |
| comment | string | approval assignment note (optional) |
| assignees | array of Assignee | list of assignees to be assigned/unnassigned to the approval (required) |
Properties inherited from ContentWorkflowParameterOperation |
||
| parameters | array of Parameter | |
Example
{
"name" : "Review",
"comment" : "I assign the approval to you",
"assignees" : [ {
"rolename" : "...",
"username" : "..."
}, {
"rolename" : "...",
"username" : "..."
} ],
"parameters" : [ {
"id" : "...",
"value" : "..."
}, {
"id" : "...",
"value" : "..."
} ]
}