UploadFile
Uploads a file and returns a unique ID to identify the file. The file must be less than 10MB.
Input
| Name | Type | Required | Description |
| LocalFile | String | False | Full local file path, including the file name, for the file being uploaded. This field is mandatory if FileData is not provided. |
| FileData | String | False | Base-64 encoded string containing the entire contents of the file. Use this field when LocalFile is not provided. |
| FileName | String | False | Desired name for the uploaded file in CVent. If left blank, the name from LocalFile will be used. Required when FileData is provided. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the file upload operation completed successfully. Returns true for success and false for failure. |
| Id | String | Unique internal identifier assigned to the uploaded file |