Generic input bean for methods that allow to write messages
| name | data type | constraints | description |
|---|---|---|---|
| body | string | required, max size: 2147483647, min size: 1 | |
| subject | string | required, max size: 2147483647, min size: 1 | |
| recipients | array of Recipient | required, max size: 2147483647, min size: 1 | |
| attachmentIds | array of string | a list of workspace item id valid in the workspace of the sender |
Example
{
"body" : "...",
"subject" : "...",
"recipients" : [ {
"id" : "john.smith"
}, {
"id" : "..."
} ],
"attachmentIds" : [ "...", "..." ]
}