GET UserAtionetAssignableRoles?page={page}&pageSize={pageSize}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
Default value is 1 |
|
| pageSize | integer |
Default value is 50 |
Body Parameters
None.
Response Information
Resource Description
Collection of RoleDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| ParentRoleId | globally unique identifier |
None. |
|
| ParentRoleName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "a5914008-5c59-46d0-b0ea-6cebe49b493c",
"Name": "sample string 2",
"ParentRoleId": "87bc3300-3f19-4d79-8cf3-0999a13eade7",
"ParentRoleName": "sample string 4"
},
{
"Id": "a5914008-5c59-46d0-b0ea-6cebe49b493c",
"Name": "sample string 2",
"ParentRoleId": "87bc3300-3f19-4d79-8cf3-0999a13eade7",
"ParentRoleName": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfRoleDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model">
<RoleDto>
<Id>a5914008-5c59-46d0-b0ea-6cebe49b493c</Id>
<Name>sample string 2</Name>
<ParentRoleId>87bc3300-3f19-4d79-8cf3-0999a13eade7</ParentRoleId>
<ParentRoleName>sample string 4</ParentRoleName>
</RoleDto>
<RoleDto>
<Id>a5914008-5c59-46d0-b0ea-6cebe49b493c</Id>
<Name>sample string 2</Name>
<ParentRoleId>87bc3300-3f19-4d79-8cf3-0999a13eade7</ParentRoleId>
<ParentRoleName>sample string 4</ParentRoleName>
</RoleDto>
</ArrayOfRoleDto>