Get UUID (Universally Unique ID)

API Type

REST

HTTP Method

GET

Description

Retrieves the UUID generated by the AgilePoint Server.

URL Format (On Premises)

https://[domain]:[port]/AgilePointServer/Workflow/GetUUID

URL Format (AgilePoint for Azure)

https://[domain]:[port]/AgilePointService/Workflow/GetUUID

Request Parameters

Name Description
None Not Applicable

JavaScript Code Example

$("#btnActivateWorkItem").click(function () {
  $.ajax({
    url: "https://mydomain:9011/AgilePointServer/Workflow/GetUUID",
    type: "GET"
  });
});

Java Code Example

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);
}

C# Code Example

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);
  }

Output

A UUID.

JSON Response Body Example

{
  "GetUUIDResult": "2A32BD8DCF4E41468316332CC31C3E0C"
}

Supported Versions

AgilePoint BPMS v5.0 R2 and higher