| Methods / Methods for Custom Attributes | |
REST
POST
Removes a custom attribute from a custom ID.
https://[domain]:[port]/AgilePointServer/Workflow/RemoveCustomAttr/[customID]
https://[domain]:[port]/AgilePointService/Workflow/RemoveCustomAttr/[customID]
| Name | Description |
|---|---|
customID |
|
| Name | Description |
|---|---|
attributeName |
|
$("#btnRemoveCustomAttr").click(function () {
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Workflow/
RemoveCustomAttr/864739D327144B22A48F77FAC09A24DB/test1",
});
});
public String RemoveCustomAttr() {
String URI = "https://mydomain:9011/AgilePointServer/Workflow/
RemoveCustomAttr/864739D327144B22A48F77FAC09A24DB";
HTTPOperations ops = new HTTPOperations(domain, userName,
password, appID, locale);
JSONObject postData = new JSONObject();
postData.put("attrName", "/pd:myFields/pd:orgamount");
return ops.POSTMethod(URI, postData.toString());
return "";
}
public string RemoveCustomAttr()
{
string URL = "https://mydomain:9011/AgilePointServer/Workflow/
RemoveCustomAttr/864739D327144B22A48F77FAC09A24DB/test1";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.POSTMethod(URL);
}
None.
The response body is empty.
AgilePoint BPMS v5.0 R2 and higher