Methods / Other Web Services |
REST
GET
Retrieves the UUID generated by the AgilePoint Server.
https://[domain]:[port]/AgilePointServer/Workflow/GetUUID
https://[domain]:[port]/AgilePointService/Workflow/GetUUID
Name | Description |
---|---|
None | Not Applicable |
$("#btnActivateWorkItem").click(function () { $.ajax({ url: "https://mydomain:9011/AgilePointServer/Workflow/GetUUID", type: "GET" }); });
public String GetUUID() { String URI = "http://mydomain:9011/AgilePointServer/Workflow/GetUUID"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GETMethod(URI); }
public string GetUUID() { string URI = "http://mydomain:9011/AgilePointServer/Workflow/GetUUID"; HTTPOperations ops = new HTTPOperations(domain, this.userName, password, appID, locale); return ops.GetData(URI); }
A UUID.
{ "GetUUIDResult": "2A32BD8DCF4E41468316332CC31C3E0C" }
AgilePoint BPMS v5.0 R2 and higher