Click on Map Input link in Configure Activity section displayed below the orchestration.
Upload File
Name | Type | Required | Description |
isChunkedUpload | Boolean | Yes | To be set to true if chunked upload. |
chunkdetails->uploadId | Integer | No | If Chunked upload is true then upload id can be given.The unique ID of the in-progress upload on the server. If left blank, the server will create a new upload session. |
Chunkdetails → offset | string | No | If Chunked upload is true then offset can be given.If Chunked upload is true then upload id can be given. |
path | string | yes | The full path to the file you want to write to. This parameter should not point to a folder. This is valid only for non chunked upload. |
overwrite | Boolean | No | his value, either true (default) or false, determines whether an existing file will be overwritten by this upload. If true, any existing file will be overwritten. If false, the other parameters determine whether a conflict occurs and how that conflict is resolved. This is valid only for non chunked upload. |
autorename | boolean | No | This value, either true (default) or false, determines what happens when there is a conflict. If true, the file being uploaded will be automatically renamed to avoid the conflict. (For example, test.txt might be automatically renamed to test (1).txt.) The new name can be obtained from the returned metadata. If false, the call will fail with a 409 (Conflict) response code. This is valid only for non chunked upload. |
locale | string | No | The metadata returned on successful upload will have its size field translated based on the given locale. This is valid only for non chunked upload. |
parentrev | string | no | If present, this parameter specifies the revision of the file you're editing. If parent_rev matches the latest version of the file on the user's Dropbox, that file will be replaced. Otherwise, a conflict will occur. If you specify a parent_rev and that revision doesn't exist, the file won't save (error 400). You can get the most recent rev by performing GetFileDetails activity. This is valid only for non chunked upload. |
textContent | string | No | If fileType is text Content then data need to be provided here to upload the same content. Need to be provided for both chunked and non chunked upload |
binaryContent | binary | No | If fileType is binaryContent then data need to be provided here to upload the same content. Need to be provided for both chunked and non chunked upload |
fileType | string | yes | Specify the fileType to get the data in specified format. Drop down displayed to select either binaryContent or textContent. |