Methods / Process Definition Methods |
REST
POST
Undoes a check-out for a process definition. This method returns the status of a process definition from CheckedOut to Released without making changes to the process definition, or changing the version number.
https://[domain]:[port]/AgilePointServer/Workflow/UnCheckOutProcDef/[processTemplateID]
https://[domain]:[port]/AgilePointService/Workflow/UnCheckOutProcDef/[processTemplateID]
Name | Description |
---|---|
processTemplateID |
|
$("#btnUncheckoutProcDef").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Workflow/ UncheckoutProcDef/C769BA234EFD421B8B95A525B972E511", }); });
public String UncheckoutProcDef(String processTemplateID) { String URI = "http://mydomain:9011/AgilePointServer/Workflow/UncheckoutProcDef/" + processTemplateID; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); JSONObject postData = new JSONObject(); return ops.POSTMethod(URI, postData.toString()); }
public string UnCheckOutProc() { string URI = "http://mydomain:9011/AgilePointServer/Workflow/ UncheckoutProcDef/6E1259372F89448CA220718128ECB018"; 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