UploadFile
Command, Obsolete since version 25.9 (Use 'UploadFileStream' instead), Introduced in version 2.52
POST https://localhost:8001/sv/001.1/api/v1/Common/FilePaths/UploadFile
Uploads a file to a file path.
Returns bool
Properties
| Name | Type | Summary | Introduced in |
|---|---|---|---|
| FilePathId | Int64 | The business key identifier of the file path where the file will be uploaded.
|
|
| FileName | String | The file name relative to the file path where the file will be uploaded. E.g. "file.txt" or "subfolder/file.txt". Avoid using absolute paths.
|
|
| Data | String | The base64 encoded representation of the file.
|
Example
{
"FilePathId": 0,
"FileName": null,
"Data": null
}