| Methods / Process Definition Methods | |
REST
GET
Retrieves all the process definition objects and activity objects.
https://[domain]:[port]/AgilePointServer/Workflow/GetProcDefSupplement/[processDefinitionID]/[activityDefinitionID]
https://[domain]:[port]/AgilePointService/Workflow/GetProcDefSupplement/[processDefinitionID]/[activityDefinitionID]
| Name | Description |
|---|---|
processDefinitionID |
|
activityDefinitionID |
|
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Workflow/
GetProcDefSupplement/CFF4B6D3DBF546A2B0423AD413A94420/C769BA234EFD421B8B95A525B972E511",
type: "GET"
});
public String GetProcDefSupplement() {
String URI = "https://mydomain:9011/AgilePointServer/Workflow/
GetProcDefSupplement/CFF4B6D3DBF546A2B0423AD413A94420/
C769BA234EFD421B8B95A525B972E511";
HTTPOperations ops = new HTTPOperations(domain, userName,
password, appID, locale);
return ops.GETMethod(URI);
}
public string GetProcDefSupplement()
{
string URI = "https://mydomain:9011/AgilePointServer/Workflow/
GetProcDefSupplement/CFF4B6D3DBF546A2B0423AD413A94420/
C769BA234EFD421B8B95A525B972E511";
HTTPOperations ops = new HTTPOperations(domain, this.userName,
password, appID, locale);
return ops.GetData(URI);
}
A byte of array represented as base64 encoded string.
{
"GetProcDefSupplementResult":[
60,
65,
99,
111,
114,
109,
62
]
}
AgilePoint BPMS v5.0 R2 and higher