GetTaskAcl
General
URL
https://{host}/attunityenterprisemanager/api/v1/server/{server}/tasks/{task}?action=acl
Description
Retrieves the explicit ACL defined in Qlik Enterprise Manager for the specified task, including a Boolean indication if ACL inheritance is disabled or enabled for the task.
The method returns the explicit ACL only. In other words, it does not return inherited ACLs.
If all of the tasks ACLs are inherited (that is, no ACL was explicitly defined for the task), an error will be returned indicating that no ACL was found.
This method can be used together with PutTaskAcl in order to update an existing task's ACL. First call GetTaskAcl, then edit the returned roles as required, and finally, call PutTaskAcl.
HTTP method
GET
Required user role
See Required Enterprise Manager permissions.
Request parameters
| Location | Name | Required | Example |
|---|---|---|---|
|
URL |
Host [string] |
Yes |
computer.network.net |
|
URL |
Server [string] |
Yes |
myrepsrv1 |
| Header |
EnterpriseManager.APISessionID [string] |
Yes |
wCo0_KvjEUFROvfHF5KGrw |
Response body
{
"admin_role": {
"users": [
{ "name": "{string}" },
{ "name": "{string}" }
],
"groups": [
{ "name": "{string}" },
{ "name": "{string}" }
]
},
"designer_role": {
"users": [
{ "name": "{string}" },
{ "name": "{string}" }
],
"groups": [
{ "name": "{string}" },
{ "name": "{string}" }
]
},
"operator_role": {
"users": [
{ "name": "{string}" },
{ "name": "{string}" }
],
"groups": [
{ "name": "{string}" },
{ "name": "{string}" }
]
},
"viewer_role": {
"users": [
{ "name": "{string}" },
{ "name": "{string}" }
],
"groups": [
{ "name": "{string}" },
{ "name": "{string}" }
]
},
"disable_inheritance": {bool}
}Response parameters
-
admin_role
-
users: An array of users assigned as Admins on the task.
-
name: A single Admin user.
-
-
groups: An array of groups assigned as Admins on the task.
-
name: A single Admin group.
-
-
-
designer_role
-
users: An array of users assigned as Designers on the task.
-
name: A single Designer user.
-
-
groups: An array of groups assigned as Designers on the task.
-
name: A single Designer group.
-
-
-
operator_role
-
users: An array of users assigned as Operators on the task.
-
name: A single Operator user.
-
-
groups: An array of groups assigned as Operators on the task.
-
name: A single Operator group.
-
-
-
viewer_role
-
users: An array of users assigned as Viewers on the task.
-
name: A single Viewer user.
-
-
groups: An array of groups assigned as Viewers on the task.
-
name: A single Viewer group.
-
-
-
disable_inheritance: If set to "true", the task does not inherit ACLs from its ancestors (in addition to its explicit ACLs). If set to "false", the task inherits ACLs from its ancestors, in addition to any explicit ACLs.
| Name | A | B | Description |
|---|---|---|---|
|
admin_role |
- | - | - |
| - |
users |
- | An array of users assigned as Admins on the task. |
| - | - |
name |
A single Admin user. |
| - |
groups |
- | An array of groups assigned as Admins on the task. |
| - | - |
name |
A single Admin group. |
|
designer_role |
- | - | - |
| - |
users |
- | An array of users assigned as Designers on the task. |
| - | - |
name |
A single Designer user. |
| - |
groups |
- | An array of groups assigned as Designers on the task. |
| - | - |
name |
A single Designer group. |
|
operator_role |
- | - | - |
| - |
users |
- | An array of users assigned as Operators on the task. |
| - | - |
name |
A single Operator user. |
| - |
groups |
- | An array of groups assigned as Operators on the task. |
| - | - |
name |
A single Operator group. |
|
viewer_role |
- | - | - |
| - |
users |
- | An array of users assigned as Viewers on the task. |
| - | - |
name |
A single Viewer user. |
| - |
groups |
- | An array of groups assigned as Viewers on the task. |
| - | - |
name |
A single Viewer group. |
|
disable_inheritance |
- | - |
If set to "true", the task does not inherit ACLs from its ancestors (in addition to its explicit ACLs). If set to "false", the task inherits ACLs from its ancestors, in addition to any explicit ACLs. |
cURL example
Request
curl -i -k --header "EnterpriseManager.APISessionID: wCo0_KvjEUFROvfHF5KGr" https://computer.network.net/attunityenterprisemanager/
api/v1/tasks/mytask?action=acl"
Response
Headers:
HTTP/1.1 200 OK
Cache-Control: no-cache, no-store
Content-Length: 502
Content-Type: application/json; charset=utf-8
Task: Microsoft-HTTPAPI/2.0
Date: Mon, 26 Dec 2016 13:18:27 GMT
Payload
{
"admin_role": {
"users": [
{"name": "QLIK\\Paul.Clarke"},
{"name": "QLIK\\testAuth1"}
],
"groups": [
{"name": "QLIK\\AttunityEnterpriseManagerAdmins"}
]
},
"designer_role": {
"users": [
{"name": "QLIK\\Marisa.Lewis"},
{"name": "QLIK\\testAuth2"}
],
"groups": [
{"name": "QLIK\\AttunityEnterpriseManagerDesigners"}
]
},
"operator_role": {
"users": [
{"name": "QLIK\\David.Foster"},
{"name": "QLIK\\testAuth3"}
],
"groups": [
{"name": "QLIK\\AttunityEnterpriseManagerOperators"}
]
},
"viewer_role": {
"users": [
{"name": "QLIK\\Laura.Todd"},
{"name": "QLIK\\testAuth4"}
],
"groups": [
{"name": "QLIK\\AttunityEnterpriseManagerViewers"}
]
},
"disable_inheritance": true
}Error response
All of the general errors as well as the errors listed in the table below.
| HTTP Code | Enterprise Manager Code | Text | Description |
|---|---|---|---|
|
500 |
AEM_GET_SERVER_ACL_INNER_ERR |
Failed to get ACL of task "{task}". Error: "{message}". |
Returned if Qlik Enterprise Manager encounters an error/exception when trying to get the task ACL. |
|
500 |
AEM_SERVER_HAS_NO_ACL |
ACL for task "{task}" could not be found. |
Returned if no explicit ACL is defined for the task. Information note
A task that does not have its own explicit ACL inherits the ACL from its ancestors. Inherited ACLs are not returned by this method. |