GET 1.0/{InstanceId}/Folders/{FolderId}/PermissionEntries
Gets permission entries for a specific folder
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| InstanceId |
The instance ID relating to a specific ADM database |
string |
Required |
| FolderId |
The parent folder for which to return the list |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of PermissionEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The ID of the permission entry - not required |
integer |
None. |
| UserType |
Type of object to which the entry relates. For example, Group or User |
MemberType |
Required |
| UserObjectId |
Id of the object to which the entry relates. For example, ID of group or user |
integer |
Required |
| PermissionValues |
Contains the details of individual permissions related to this object |
Collection of PermissionValuePair |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"UserType": "User",
"UserObjectId": 2,
"PermissionValues": [
{
"Type": "Add",
"Value": "Deny"
},
{
"Type": "Add",
"Value": "Deny"
}
]
},
{
"Id": 1,
"UserType": "User",
"UserObjectId": 2,
"PermissionValues": [
{
"Type": "Add",
"Value": "Deny"
},
{
"Type": "Add",
"Value": "Deny"
}
]
}
]