| Methods / Process Definition Methods | |
REST
GET
Retrieves graphical data for the process definition in XML format. The graphical representation of the process is XML-serialized by the class Graphic Image. The graphical data is used to display the process visually.
https://[domain]:[port]/AgilePointServer/Workflow/GetProcDefGraphics/[processID]
https://[domain]:[port]/AgilePointService/Workflow/GetProcDefGraphics/[processID]
| Name | Description |
|---|---|
processID |
|
$("#btnGetProcDefGraphics").click(function () {
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Workflow/
GetProcDefGraphics/FFF216089A274862BA56223B3E087A82",
type: "GET"
});
});
public String GetProcDefGraphics(String processID) {
String URI = "http://mydomain:9011/AgilePointServer/Workflow/GetProcDefGraphics/"
+ processID;
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GETMethod(URI);
}
public string GetProcDefGraphics()
{
string URI = "http://mydomain:9011/AgilePointServer/Workflow/
GetProcDefGraphics/6E1259372F89448CA220718128ECB018";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GetData(URI);
}
Graphics object in XML format.
{
"GetProcDefGraphicsResult":"<?xml version=\"1.0\" encoding=\"utf-8\"?>
<Graphics>...<\/Graphics>"
}
AgilePoint BPMS v5.0 R2 and higher