GET v1/Files/{fileId}
Get a specified File object.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fileId |
The File Id |
integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
An File object.
File| Name | Description | Type | Additional information |
|---|---|---|---|
| CreatedTimestamp |
Gets the date/time on which the file was created |
date |
None. |
| ChangedTimestamp |
Gets the date/time on which the file was last changed |
date |
None. |
| FileLength |
Gets the byte length of the file. Only set id Base64 field is loaded |
integer |
Required |
| Checksum |
SHA1 checksum of file contents. Only set id Base64 field is loaded |
string |
None. |
| Sequence |
Gets or sets the sequence. |
integer |
None. |
| Base64Data |
Gets or sets the base64 data. |
string |
None. |
| Id |
Gets or sets the identifier. |
integer |
Required |
| Filename |
Gets or sets the filename. |
string |
Required Max length: 255 |
Response Formats
application/json, text/json
Sample:
{
"CreatedTimestamp": "2026-01-11T16:13:34.0962987+01:00",
"ChangedTimestamp": "2026-01-11T16:13:34.0962987+01:00",
"FileLength": 3,
"Checksum": "sample string 4",
"Sequence": 5,
"Base64Data": "sample string 6",
"Id": 7,
"Filename": "sample string 8"
}
application/xml, text/xml
Sample:
<File xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Id>7</Id> <Filename>sample string 8</Filename> <CreatedTimestamp>2026-01-11T16:13:34.0962987+01:00</CreatedTimestamp> <ChangedTimestamp>2026-01-11T16:13:34.0962987+01:00</ChangedTimestamp> <FileLength>3</FileLength> <Checksum>sample string 4</Checksum> <Sequence>5</Sequence> <Base64Data>sample string 6</Base64Data> </File>