Methods / User Delegation |
REST
POST
Activates a delegation.
https://[domain]:[port]/AgilePointServer/Admin/ActivateDelegation/[delegationID]
https://[domain]:[port]/AgilePointService/Admin/ActivateDelegation/[delegationID]
Name | Description |
---|---|
delegationID |
|
$("#btnActivateDelegation").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Admin/ ActivateDelegation/CFF4B6D3DBF546A2B0423AD413A94420", }); });
public String ActivateDelegation(String delegationID) { String URI = "http://mydomain:9011/AgilePointServer/Admin/ActivateDelegation/" + delegationID; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); JSONObject postData = new JSONObject(); return ops.POSTMethod(URI, postData.toString()); }
public string ActivateDelegation() { string URI = "http://mydomain:9011/AgilePointServer/Admin/ ActivateDelegation/C0298B1AA3444A28A7CE5E1DFC297A87"; 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