| Methods / Group, Role, and Rights | |
REST
GET
Retrieves the names of all the access rights in the AgilePoint system.
https://[domain]:[port]/AgilePointServer/Admin/GetAccessRightNames
https://[domain]:[port]/AgilePointService/Admin/GetAccessRightNames
| Name | Description |
|---|---|
| None | Not Applicable |
$("#btnGetAccessRightNames").click(function () {
$.ajax({
url: "https://mydomain:9011/AgilePointServer/Admin/GetAccessRightNames",
type: "GET"
});
});
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);
}
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);
}
An array of strings that contain the names of all the access rights for the system.
{
"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*"
]}
AgilePoint BPMS v5.0 R2 and higher