UploadFile
Upload file to destination.
Input
| Name | Type | Accepts Input Streams | Description |
| DestinationPath | String | False | The full path where the file should be uploaded to. Relative to the path provided in the URI connection property. |
| LocalPath | String | False | The path of the local file to upload. |
| InputStream | Binary | True | An instance of an input stream to read the file content from. Only used if LocalPath is not set. |
| InputData | String | False | Base64 string representation of the file content. Only used if LocalPath and InputStream are not set. |
Result Set Columns
| Name | Type | Description |
| Success | Bool | Boolean indicating if the procedure was executed successfully. If false, the output parameter 'Details' will contain the failure details. |
| Details | String | Details of execution failure. NULL if success=true. |