UploadDocument
Uploads the specified document.
Input
| Name | Type | Required | Accepts Input Streams | Description |
| FileName | String | True | False | The name of the file to upload. |
| FolderID | String | True | False | The identifier of the folder to upload into. |
| LocalPath | String | False | False | The absolute location where the file will be read from. |
| InputStream | String | False | True | An instance of an input stream where file data is read from. Only used if LocalPath is not set. |
| FileData | String | False | False | If the LocalPath and FileStream inputs are empty, you can input base64 encoded string. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | 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. |