Response containing the list of subselected folders
| name | data type | constraints | description |
|---|---|---|---|
| folders | array of number | Get the subselected folders | |
| inheritedFolders | map of array of number | Get the subselected inherited folders | |
| messages | array of Message | Messages contained in the response (which should be shown to the user) | |
| responseInfo | ResponseInfo | ||
| inBackground | boolean | required boolean | Whether the job was pushed into the background. |
Example
{
"folders" : [ 12345, 12345 ],
"inheritedFolders" : {
"property1" : [ 12345, 12345 ],
"property2" : [ 12345, 12345 ]
},
"messages" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
},
"inBackground" : true
}