GET api/accessrightgroups?authorityProviderID={authorityProviderID}
Get the list of access right groups for the authenticated user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| authorityProviderID |
Identifier for the authority provider |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AccessRightsGroups
Collection of AccessRightGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| GroupID |
The identity of the access right group |
integer |
None. |
| GroupName |
The name of the access right group |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"GroupID": 1,
"GroupName": "Admin"
},
{
"GroupID": 2,
"GroupName": "Trading Platform Team"
}
]
application/xml, text/xml
Sample:
<ArrayOfAccessRightGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.AccessRightGroup">
<AccessRightGroup>
<GroupID>1</GroupID>
<GroupName>Admin</GroupName>
</AccessRightGroup>
<AccessRightGroup>
<GroupID>2</GroupID>
<GroupName>Trading Platform Team</GroupName>
</AccessRightGroup>
</ArrayOfAccessRightGroup>