Methods / Process Definition Methods |
REST
POST
Releases a process definition from the AgilePoint Server.
https://[domain]:[port]/AgilePointServer/Workflow/ReleaseProcDef/[processTemplateID]
https://[domain]:[port]/AgilePointService/Workflow/ReleaseProcDef/[processTemplateID]
Name | Description |
---|---|
processTemplateID |
|
$("#btnReleaseProcDef").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Workflow/ ReleaseProcDef/C769BA234EFD421B8B95A525B972E511" }); });
public String ReleaseProcDef(String processTemplateID) { String URI = "http://mydomain:9011/AgilePointServer/Workflow/ReleaseProcDef/" + processTemplateID; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); JSONObject postData = new JSONObject(); return ops.POSTMethod(URI, postData.toString()); }
public string ReleaseProcDef() { string URI = "http://mydomain:9011/AgilePointServer/Workflow/ ReleaseProcDef/ 3B9A54192B6C4C4AA902BD46279C7FAF"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.POSTMethod(URI, ""); }
None.
The response body is empty.
AgilePoint BPMS v5.0 R2 and higher