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": "9cd9c294-96d5-4fb9-b86b-808681149b2b",
"Name": "sample string 2",
"ParentRoleId": "db6e1a01-6dd4-4b01-9fe4-831522f386ae",
"ParentRoleName": "sample string 4"
},
{
"Id": "9cd9c294-96d5-4fb9-b86b-808681149b2b",
"Name": "sample string 2",
"ParentRoleId": "db6e1a01-6dd4-4b01-9fe4-831522f386ae",
"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>9cd9c294-96d5-4fb9-b86b-808681149b2b</Id>
<Name>sample string 2</Name>
<ParentRoleId>db6e1a01-6dd4-4b01-9fe4-831522f386ae</ParentRoleId>
<ParentRoleName>sample string 4</ParentRoleName>
</RoleDto>
<RoleDto>
<Id>9cd9c294-96d5-4fb9-b86b-808681149b2b</Id>
<Name>sample string 2</Name>
<ParentRoleId>db6e1a01-6dd4-4b01-9fe4-831522f386ae</ParentRoleId>
<ParentRoleName>sample string 4</ParentRoleName>
</RoleDto>
</ArrayOfRoleDto>