DeleteAlert
Posted by Ismail Moamer, Last modified by Ismail Moamer on 18 October 2021 12:01 PM

Syntax 

Public function DeleteAlert(AlertID As Integer, AlertType As Integer)

Description

The DeleteAlert operation is used to Update a given alert number that takes on a specific accounts

Request Parameters

Name Description  Required
AlertID
  • The number of alert that want to update it
  • Type : Integer
  • Default : none
  • Constraints: Must be valid Alert  ID and accessible by the logged in session
Yes
AlertType
  • The type of the alert
  • Type : Integer
  • Constraints : Must be one of the Following :
    1 : means Sound Alert
    2 : means SMS Alert
Yes

 Response Elements

Name Description 
Result

The operation alert number that has been deleted, otherwise an explicit error code 

Sample

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DeleteAlert</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<script>
$(document).ready(function () {
var urlStr = "http://webtrader.hybridsolutions.com/publicweb/webservice.svc";
jQuery.support.cors = true;
$("#progress").ajaxStart(function () { $(this).css("display", "block"); });
$("#progress").ajaxComplete(function () { $(this).css("display", "none"); });
$("#resultAction").ajaxError(function (result) { $(this).html('An error occured'); });



function onSuccessResultt(dataResult) {
var result = eval(dataResult);
var rst = ""
if (dataResult > 0) {
$("#resultData").html("SuccessResult : " + dataResult)
}
else {
$("#resultAction").html("Error Code : " + dataResult + "<br/>" );
}
}


function onSuccessResult(response) {
response = eval('(' + response + ')')
if (response.UserId == -1 || response.UserId == -207) {
$("#resultData").html("Invalid username or password");
}
else if (response.UserId == -231) {
$("#resultData").html("You must have at least one account");
}
else if (response == null || response == "" || response.UserId < 0) {
$("#resultData").html("Error while login.Please try later");
}
else {
$("#resultData").html("SuccessResult ... UserId is :" + response.UserId);
}
}
function onErrorResult(result) {
alert('Service call faild : ' + result.status + ' ' + result.statusText);
}
$("#btnLogin").click(function () {
$.getJSON(urlStr + "/Login?username=" + $("#txtusername").val() + "&password=" + $("#txtpassword").val() + "&callback=?" , onSuccessResult);
});
$("#btnAction").click(function () {
$.getJSON(urlStr + "/DeleteAlert?AlertID" + $("#txtAlertID").val() + "&AlertType=" + $("#txtAlertType").val() + "&callback=?", onSuccessResultt);
});
});
</script>
<body>
<table border="1px">
<tbody>
<tr>
<td>
Username: <input type="text" id="txtusername" value=""/>
Password: <input type="text" id="txtpassword" value=""/>
<button id="btnLogin"> Login </button>
</td>
</tr>
<tr>
<td>
AlertID: <input type="text" id="txtAlertID" value=""/>
AlertType: <input type="text" id="txtAlertType" value=""/>
<button id="btnAction"> DeleteAlert </button>
</td>
</tr>
</tbody>
</table>
<div id="resultData"> </div>
<div id="resultAction"> </div>
<div style="display:none" id="progress">Loading ... </div>
</body>
</html>
 

 


See Also

GetDelivaryItem
getClientGMT
GetStmtHeaderFooter


VertexFX WCF Service Index

(0 vote(s))
Helpful
Not helpful

Comments (0)
Post a new comment
 
 
Full Name:
Email:
Comments:
CAPTCHA Verification 
 
Please enter the text you see in the image into the textbox below (we use this to prevent automated submissions).

Help Desk Software by Hybrid Solutions