MoveDocumentsToPortalFolderResultDto
The result of a batch portal folder move. Documents are moved independently, so a batch
can contain a mix of successes and failures.
Properties
| Name | Type | Description |
|---|---|---|
| results | array of DocumentMoveResultDto | One entry per document code submitted, in the order they were sent. |
One entry per document code submitted, in the order they were sent. | ||
| portalFolderPath | string | The normalised destination folder path. Null means the portal root. |
The normalised destination folder path. Null means the portal root. | ||
JSON Example
{
"results": [
{
"code": "...",
"success": "...",
"error": "..."
}
],
"portalFolderPath": "string"
}