GET v1/Security/AccessPermissions
Get a list of permissions the current user has access to.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of that the current user has access to.
Collection of AccessPermissionV1| Name | Description | Type | Additional information |
|---|---|---|---|
| ControllerName |
Gets or sets the controller name. |
string |
None. |
| ActionName |
Gets or sets the action name. |
string |
None. |
| ActionType |
Gets or sets the action type. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ControllerName": "sample string 1",
"ActionName": "sample string 2",
"ActionType": "sample string 3"
},
{
"ControllerName": "sample string 1",
"ActionName": "sample string 2",
"ActionType": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfAccessPermission xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Core.Models.Security">
<AccessPermission>
<ActionName>sample string 2</ActionName>
<ActionType>sample string 3</ActionType>
<ControllerName>sample string 1</ControllerName>
</AccessPermission>
<AccessPermission>
<ActionName>sample string 2</ActionName>
<ActionType>sample string 3</ActionType>
<ControllerName>sample string 1</ControllerName>
</AccessPermission>
</ArrayOfAccessPermission>