API Docs / Schemas / ExternalFileMoveResultDto

ExternalFileMoveResultDto

The outcome of moving a single file within a batch move.

Properties

Name Type Description
externalFileIdstring

The identifier the caller sent, so it can match this result to the file.

The identifier the caller sent, so it can match this result to the file.

newExternalFileIdstring

The identifier after the move. Differs from the original only on platforms that identify
files by path — callers holding the old value should replace it with this one.

The identifier after the move. Differs from the original only on platforms that identify
files by path — callers holding the old value should replace it with this one.

successboolean

Whether the file was moved.

Whether the file was moved.

errorstring

Why the move failed. Null when it succeeded.

Why the move failed. Null when it succeeded.

JSON Example

{
  "externalFileId": "string",
  "newExternalFileId": "string",
  "success": false,
  "error": "string"
}

Contained in Schemas