GET api/PresidentialActions/GetImage/{id}
Get Image by post/doc id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
FileData| Name | Description | Type | Additional information |
|---|---|---|---|
| FileBytes | Collection of byte |
None. |
|
| FileSize | integer |
None. |
|
| extension | string |
None. |
|
| file | Collection of byte |
None. |
|
| name | string |
None. |
|
| path | string |
None. |
|
| volId | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"FileBytes": "QEA=",
"FileSize": 1,
"extension": "sample string 2",
"file": "QEA=",
"name": "sample string 3",
"path": "sample string 4",
"volId": "sample string 5"
}
application/xml, text/xml
Sample:
<FileData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FileServerWCF"> <FileBytes>QEA=</FileBytes> <FileSize>1</FileSize> <extension>sample string 2</extension> <file>QEA=</file> <name>sample string 3</name> <path>sample string 4</path> <volId>sample string 5</volId> </FileData>