POST api/hps/insertWebAlert
Request Information
URI Parameters
None.
Body Parameters
InsertAlertReqest| Name | Description | Type | Additional information |
|---|---|---|---|
| Logintype | string |
None. |
|
| Alert | string |
None. |
|
| LoginId | integer |
None. |
|
| Compnyid | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Logintype": "sample string 1",
"Alert": "sample string 2",
"LoginId": 3,
"Compnyid": "sample string 4"
}
application/xml, text/xml
Sample:
<InsertAlertReqest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Result.ResultModel"> <Compnyid>sample string 4</Compnyid> <Alert>sample string 2</Alert> <LoginId>3</LoginId> <Logintype>sample string 1</Logintype> </InsertAlertReqest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
InsertAlertResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<InsertAlertResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Result.ResultModel"> <IsSuccess>true</IsSuccess> <Message>sample string 2</Message> </InsertAlertResponse>