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": "84d2089f-79b5-4967-af6f-1da5c073ca6e",
"Name": "sample string 2",
"ParentRoleId": "544ec895-ada6-4763-ba2b-4ad86bd7ba2c",
"ParentRoleName": "sample string 4"
},
{
"Id": "84d2089f-79b5-4967-af6f-1da5c073ca6e",
"Name": "sample string 2",
"ParentRoleId": "544ec895-ada6-4763-ba2b-4ad86bd7ba2c",
"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>84d2089f-79b5-4967-af6f-1da5c073ca6e</Id>
<Name>sample string 2</Name>
<ParentRoleId>544ec895-ada6-4763-ba2b-4ad86bd7ba2c</ParentRoleId>
<ParentRoleName>sample string 4</ParentRoleName>
</RoleDto>
<RoleDto>
<Id>84d2089f-79b5-4967-af6f-1da5c073ca6e</Id>
<Name>sample string 2</Name>
<ParentRoleId>544ec895-ada6-4763-ba2b-4ad86bd7ba2c</ParentRoleId>
<ParentRoleName>sample string 4</ParentRoleName>
</RoleDto>
</ArrayOfRoleDto>