GET api/ActionRoleMapping?actionName={actionName}&controllerName={controllerName}&clientid={clientid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
actionName

string

Required

controllerName

string

Required

clientid

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomSTARoleBaseAttribute
NameDescriptionTypeAdditional information
ProjectRoleId

globally unique identifier

None.

ProjectRoleName

string

None.

ClientID

globally unique identifier

None.

ActionId

globally unique identifier

None.

ActionName

string

None.

ControllerName

string

None.

IsRead

boolean

None.

IsWrite

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProjectRoleId": "e3d3adc1-0973-433c-b63a-89734f9b0285",
    "ProjectRoleName": "sample string 2",
    "ClientID": "8acfa6ce-75da-406d-a741-0820e7f504b1",
    "ActionId": "ab7fd538-86cb-4013-abf1-bafcebcce70b",
    "ActionName": "sample string 5",
    "ControllerName": "sample string 6",
    "IsRead": true,
    "IsWrite": true
  },
  {
    "ProjectRoleId": "e3d3adc1-0973-433c-b63a-89734f9b0285",
    "ProjectRoleName": "sample string 2",
    "ClientID": "8acfa6ce-75da-406d-a741-0820e7f504b1",
    "ActionId": "ab7fd538-86cb-4013-abf1-bafcebcce70b",
    "ActionName": "sample string 5",
    "ControllerName": "sample string 6",
    "IsRead": true,
    "IsWrite": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomSTARoleBaseAttribute xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel">
  <CustomSTARoleBaseAttribute>
    <ActionId>ab7fd538-86cb-4013-abf1-bafcebcce70b</ActionId>
    <ActionName>sample string 5</ActionName>
    <ClientID>8acfa6ce-75da-406d-a741-0820e7f504b1</ClientID>
    <ControllerName>sample string 6</ControllerName>
    <IsRead>true</IsRead>
    <IsWrite>true</IsWrite>
    <ProjectRoleId>e3d3adc1-0973-433c-b63a-89734f9b0285</ProjectRoleId>
    <ProjectRoleName>sample string 2</ProjectRoleName>
  </CustomSTARoleBaseAttribute>
  <CustomSTARoleBaseAttribute>
    <ActionId>ab7fd538-86cb-4013-abf1-bafcebcce70b</ActionId>
    <ActionName>sample string 5</ActionName>
    <ClientID>8acfa6ce-75da-406d-a741-0820e7f504b1</ClientID>
    <ControllerName>sample string 6</ControllerName>
    <IsRead>true</IsRead>
    <IsWrite>true</IsWrite>
    <ProjectRoleId>e3d3adc1-0973-433c-b63a-89734f9b0285</ProjectRoleId>
    <ProjectRoleName>sample string 2</ProjectRoleName>
  </CustomSTARoleBaseAttribute>
</ArrayOfCustomSTARoleBaseAttribute>