MoveExternalFilesResultDto
The result of a batch file move. Files are moved independently, so a batch can contain a
mix of successes and failures.
Properties
| Name | Type | Description |
|---|---|---|
| results | array of ExternalFileMoveResultDto | One entry per file submitted, in the order they were sent. |
One entry per file submitted, in the order they were sent. | ||
JSON Example
{
"results": [
{
"externalFileId": "...",
"newExternalFileId": "...",
"success": "...",
"error": "..."
}
]
}