GET api/VT/getAlertListForVTD?Fk_CompanyId={Fk_CompanyId}&UserId={UserId}&ADASorDMS={ADASorDMS}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Fk_CompanyId | integer |
Required |
|
| UserId | integer |
Required |
|
| ADASorDMS | string |
Required |
Body Parameters
None.
Response Information
Resource Description
VTResultOfListOfAlertMDL| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Result | boolean |
None. |
|
| Data | Collection of AlertMDL |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Result": true,
"Data": [
{
"ID": "sample string 1",
"Value": "sample string 2"
},
{
"ID": "sample string 1",
"Value": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<VTResultOfArrayOfAlertMDL_PUa0JunP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.FTSServices">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.WebAPIMDL">
<d2p1:AlertMDL>
<d2p1:ID>sample string 1</d2p1:ID>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:AlertMDL>
<d2p1:AlertMDL>
<d2p1:ID>sample string 1</d2p1:ID>
<d2p1:Value>sample string 2</d2p1:Value>
</d2p1:AlertMDL>
</Data>
<Message>sample string 1</Message>
<Result>true</Result>
</VTResultOfArrayOfAlertMDL_PUa0JunP>