GET api/File/GetFileNotification/{id}
Get file notification by ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
ID of file |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
The notification
FileNotification| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
None. |
|
| Filename | string |
None. |
|
| Message | string |
None. |
|
| Creator | string |
None. |
|
| Company | string |
None. |
|
| Group | integer |
None. |
|
| Status | FileStatus |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": "sample string 1",
"Filename": "sample string 2",
"Message": "sample string 3",
"Creator": "sample string 4",
"Company": "sample string 5",
"Group": 6,
"Status": 0
}
application/xml, text/xml
Sample:
<FileNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Advania.Model.FileExchange"> <Company>sample string 5</Company> <Creator>sample string 4</Creator> <Filename>sample string 2</Filename> <Group>6</Group> <ID>sample string 1</ID> <Message>sample string 3</Message> <Status>New</Status> </FileNotification>