GET api/Files/{id}/Content
Returns the file with the Base64 encoded content.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Id of file. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns the file with the Base64 encoded content.
FileContentName | Description | Type | Additional information |
---|---|---|---|
Content | string |
Optional |
|
Id | integer |
Optional |
|
Name | string |
Optional |
|
MimeType | string |
Optional |
|
Album | string |
Optional |
|
AlbumKey | string |
Optional |
|
Ordinal | integer |
Optional |
|
CapturedDate | date |
Optional |
|
CreatedOn | date |
Optional |
|
Caption | string |
Optional |
|
Latitude | decimal number |
Optional |
|
Longitude | decimal number |
Optional |
|
IsAnnotation | boolean |
Optional |
|
IsThumbnail | boolean |
Optional |
|
Height | integer |
Optional |
|
Width | integer |
Optional |
|
S3Path | string |
Optional |
|
Url | string |
Optional |
|
Tags | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Tags": [ "sample string 1", "sample string 2" ], "Content": "sample string 1", "Id": 2, "Name": "sample string 3", "MimeType": "sample string 4", "Album": "sample string 5", "AlbumKey": "sample string 6", "Ordinal": 7, "CapturedDate": "2025-05-23T17:14:56.9262326-05:00", "CreatedOn": "2025-05-23T17:14:56.9262326-05:00", "Caption": "sample string 8", "Latitude": 1.1, "Longitude": 1.1, "IsAnnotation": true, "IsThumbnail": true, "Height": 1, "Width": 1, "S3Path": "sample string 11", "Url": "api/Files/2/File" }