Get Access Right Names

API Type

REST

HTTP Method

GET

Description

Retrieves the names of all the access rights in the AgilePoint system.

URL Format (On Premises)

https://[domain]:[port]/AgilePointServer/Admin/GetAccessRightNames

URL Format (AgilePoint for Azure)

https://[domain]:[port]/AgilePointService/Admin/GetAccessRightNames

Request Parameters

Name Description
None Not Applicable

JavaScript Code Example

$("#btnGetAccessRightNames").click(function () {
  
  $.ajax({
    url: "https://mydomain:9011/AgilePointServer/Admin/GetAccessRightNames",
    type: "GET"
  });
  
});

Java Code Example

public String GetAccessRightNames() {

  String URI = "http://mydomain:9011/AgilePointServer/Admin/GetAccessRightNames";

  HTTPOperations ops = new HTTPOperations(domain, this.userName,
                       password, appID, locale);

  return ops.GETMethod(URI);
}

C# Code Example

public string GetAccessRightNames()
  {
    string URL = "http://mydomain:9011/AgilePointServer/Admin/GetAccessRightNames";

    HTTPOperations ops = new HTTPOperations(domain, this.userName, 
                         password, appID, locale);

    return ops.GetData(URL);
  }

Output

An array of strings that contain the names of all the access rights for the system.

JSON Response Body Example

{
  "GetAccessRightNamesResult":[
  "Register and modify the user information",
  "Unregister a user",
  "Add and modify the role information",
  "Remove a role",
  "Add and modify the group information",
  "Remove a group",
  "Modify\/View the system configuration",
  "Add a process template",
  "Checkin and checkout a process template",
  "Delete and disable a process template",
  "Release a process template",
  "Initiate a process",
  "Suspend and resume a process",
  "Resend and cancel an email notification",
  "Cancel a process",
  "Rollback a process",
  "Reassign a task",
  "Cancel a task",
  "Create a task",
  "Add, remove, and modify delegation",
  "Add, remove, and modify report configuration",
  "Archive and restore process(es)",
  "Add, remove, and modify shared custom attributes",
  "View Process details",
  "Modify custom attributes*",
  "View custom attributes*",
  "Allow to execute QueryDatabase() and QueryDatabaseEx()*",
  "Mark automatic work item completion*",
  "Save or remove temporary file*"
]}

Supported Versions

AgilePoint BPMS v5.0 R2 and higher