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 |
Example
{
"body" : "...",
"subject" : "...",
"recipients" : [ {
"id" : "john.smith"
}, {
"id" : "..."
} ]
}