Waiting for engine...
Skip to main content

Upload Action

(Required) Indicates a command (action) that should be performed at the server for a given request.

Possible ValuesDescription
Upload fileOne or more files are being uploaded through the request and should be saved by the server.
Create folderThe server should create a folder with the provided name. If the folder already exists, no action is taken.
Upload file first chunkA chunk of a single file is being uploaded through the request and should be saved by the server as the first chunk of the file.
The file will have the PartialUpload flag set to true.
Upload file middle chunkA chunk of single file is being uploaded through the request and should be saved by the server as an intermediary chunk of the file. The file will have the PartialUpload flag set to true.
Upload file last chunkA chunk of a single file is being uploaded through the request and should be saved by the server as the last chunk of the file.
The file will have the PartialUpload flag set to false.
Delete fileThe server should delete the file associated with the provided file ID.
Operation completedThe overall upload operation was completed and server should perform any necessary action to ensure its completeness.
Only required by external upload operations.