AddFileToUpdate
Uploads and associates a file with a specific update, providing additional context.
Input
Name | Type | Required | Description |
UpdateId | String | True | The unique identifier of the update operation where the file should be added. This allows the procedure to associate the file with a specific update record in the system. |
FileName | String | False | The name of the file being uploaded. This is required when the 'Content' parameter is used to specify the file's contents, ensuring the file is properly named in the database. |
LocalPath | String | False | The local file path where the file is stored on the system. This is used when the file needs to be uploaded from a specific location on the server. |
Result Set Columns
Name | Type | Description |
Success | Boolean | A boolean value indicating whether the file upload operation completed successfully. 'True' means the operation was successful, while 'False' indicates there was an error. |
Details | String | A message containing additional details or feedback about the file upload operation, which can be useful for debugging or confirming the success of the process. |
AssetId | String | The unique identifier assigned to the uploaded file. This ID can be used to reference the file in subsequent operations or to retrieve it from the system. |