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": "8fc5c50e-bfb8-4296-b987-a05c70b2a3f7",
"Name": "sample string 2",
"ParentRoleId": "f24d3fbb-4be6-433e-8447-b4c6d11ebc93",
"ParentRoleName": "sample string 4"
},
{
"Id": "8fc5c50e-bfb8-4296-b987-a05c70b2a3f7",
"Name": "sample string 2",
"ParentRoleId": "f24d3fbb-4be6-433e-8447-b4c6d11ebc93",
"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>8fc5c50e-bfb8-4296-b987-a05c70b2a3f7</Id>
<Name>sample string 2</Name>
<ParentRoleId>f24d3fbb-4be6-433e-8447-b4c6d11ebc93</ParentRoleId>
<ParentRoleName>sample string 4</ParentRoleName>
</RoleDto>
<RoleDto>
<Id>8fc5c50e-bfb8-4296-b987-a05c70b2a3f7</Id>
<Name>sample string 2</Name>
<ParentRoleId>f24d3fbb-4be6-433e-8447-b4c6d11ebc93</ParentRoleId>
<ParentRoleName>sample string 4</ParentRoleName>
</RoleDto>
</ArrayOfRoleDto>