POST api/file/Update
Request Information
URI Parameters
None.
Body Parameters
FileModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Token | globally unique identifier |
None. |
|
| ID | integer |
None. |
|
| CompanyID | integer |
None. |
|
| Data | Collection of byte |
None. |
|
| Length | integer |
None. |
|
| ContentType | string |
None. |
|
| FileName | string |
None. |
|
| FileExtension | string |
None. |
|
| IsListedInFolders | boolean |
None. |
|
| FolderID | integer |
None. |
|
| IsPublicImage | boolean |
None. |
|
| IsDeleted | boolean |
None. |
|
| IsActive | boolean |
None. |
|
| Sort | integer |
None. |
|
| ImageID | integer |
None. |
|
| CreatedUserID | globally unique identifier |
None. |
|
| CreatedDate | date |
None. |
|
| ModifiedUserID | globally unique identifier |
None. |
|
| ModifiedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Token": "b829e5e7-a969-480c-894f-bac119bc59c6",
"ID": 2,
"CompanyID": 3,
"Data": "QEA=",
"Length": 4,
"ContentType": "sample string 5",
"FileName": "sample string 6",
"FileExtension": "sample string 7",
"IsListedInFolders": true,
"FolderID": 1,
"IsPublicImage": true,
"IsDeleted": true,
"IsActive": true,
"Sort": 1,
"ImageID": 1,
"CreatedUserID": "b2f5f6b2-a838-4e2e-9d4c-f15b4092f9ae",
"CreatedDate": "2026-03-19T14:22:28.0996482+00:00",
"ModifiedUserID": "3b5c8f3e-bde8-4057-9614-6458e458bfea",
"ModifiedDate": "2026-03-19T14:22:28.0996482+00:00"
}
application/xml, text/xml
Sample:
<FileModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArtSolutions.ReqStudio.Core.FileModels"> <CompanyID>3</CompanyID> <ContentType>sample string 5</ContentType> <CreatedDate>2026-03-19T14:22:28.0996482+00:00</CreatedDate> <CreatedUserID>b2f5f6b2-a838-4e2e-9d4c-f15b4092f9ae</CreatedUserID> <Data>QEA=</Data> <FileExtension>sample string 7</FileExtension> <FileName>sample string 6</FileName> <FolderID>1</FolderID> <ID>2</ID> <ImageID>1</ImageID> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <IsListedInFolders>true</IsListedInFolders> <IsPublicImage>true</IsPublicImage> <Length>4</Length> <ModifiedDate>2026-03-19T14:22:28.0996482+00:00</ModifiedDate> <ModifiedUserID>3b5c8f3e-bde8-4057-9614-6458e458bfea</ModifiedUserID> <Sort>1</Sort> <Token>b829e5e7-a969-480c-894f-bac119bc59c6</Token> </FileModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.