| Methods / User Delegation | |
REST
POST
Removes a delegation from the AgilePoint system.
https://[domain]:[port]/AgilePointServer/Admin/RemoveDelegation/[delegationID]
https://[domain]:[port]/AgilePointService/Admin/RemoveDelegation/[delegationID]
| Name | Description |
|---|---|
delegationID |
|
$("#btnRemoveDelegation").click(function () {
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Admin/
RemoveDelegation/CFF4B6D3DBF546A2B0423AD413A94420"
});
});
public String RemoveDelegation() {
String URI = "https://mydomain:9011/AgilePointServer/Admin/
RemoveDelegation/CFF4B6D3DBF546A2B0423AD413A94420";
HTTPOperations ops = new HTTPOperations(domain, userName,
password, appID, locale);
JSONObject postData = new JSONObject();
return ops.POSTMethod(URI, postData.toString());
}
public string RemoveDelegation()
{
string URI = "https://mydomain:9011/AgilePointServer/Admin/
RemoveDelegation/CFF4B6D3DBF546A2B0423AD413A94420";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.POSTMethod(URI, "");
}
None.
The response body is empty.
AgilePoint BPMS v5.0 R2 and higher