| Methods / Process Definition Methods | |
REST
GET
Retrieves the names and IDs of all released process definitions.
https://[domain]:[port]/AgilePointServer/Workflow/GetReleasedProcDefs
https://[domain]:[port]/AgilePointService/Workflow/GetReleasedProcDefs
| Name | Description |
|---|---|
| None | Not Applicable |
$("#btnGetReleasedProcDefs").click(function () {
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Workflow/GetReleasedProcDefs",
type: "GET"
});
});
public String GetReleasedProcessDefinitions() {
String URI = "http://mydomain:9011/AgilePointServer/Workflow/GetProcDefs";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GETMethod(URI);
}
public string GetReleasedProcDefs()
{
string URI = "http://mydomain:9011/AgilePointServer/Workflow/GetReleasedProcDefs";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GetData(URI);
}
KeyValue array for pairs of process definition IDs and process definition names.
{
"GetReleasedProcDefsResult": [
{
"Key": "6C7029387DB64567BFFA0F625D4314BE",
"Value": "ProcessMapApproval"
}]
}
AgilePoint BPMS v5.0 R2 and higher