Methods / Process Definition Methods |
REST
GET
Retrieves the ID for the first version of the process definition, called the base process definition. All subsequent process definition versions have the same base process definition ID. This call retrieves the base process definition ID with the specified process definition name.
https://[domain]:[port]/AgilePointServer/Workflow/GetBaseProcDefID/[procDefName]
https://[domain]:[port]/AgilePointService/Workflow/GetBaseProcDefID/[procDefName]
Name | Description |
---|---|
procDefName |
|
$("#btnGetBaseProcDefID").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Workflow/ GetBaseProcDefID/ProcessMapApproval", type: "GET" }); });
public String GetDatabaseInformation() { String URI = "http://mydomain:9011/AgilePointServer/Admin/GetDatabaseInfo"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string ProcessDefinitionID() { string URI = "http://mydomain:9011/AgilePointServer/Workflow/ GetBaseProcDefID/Test2"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URI); }
string that contains the base process definition ID.
{ "GetBaseProcDefIDResult":"5990FB41783F4C7F86E3452AFD62BB8E" }
AgilePoint BPMS v5.0 R2 and higher