GET OneStop/Groups/{GroupID}/SecurityProfiles/{SecurityProfileID}

Gets elements for specified security profile

Request Information

URI Parameters

NameDescriptionTypeAdditional information
GroupID

integer

Required

SecurityProfileID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of SecurityProfileElementDTO
NameDescriptionTypeAdditional information
ElementKey

integer

None.

ElementName

string

None.

ElementDescription

string

None.

IsAllowed

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ElementKey": 1,
    "ElementName": "sample string 2",
    "ElementDescription": "sample string 3",
    "IsAllowed": true
  },
  {
    "ElementKey": 1,
    "ElementName": "sample string 2",
    "ElementDescription": "sample string 3",
    "IsAllowed": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfSecurityProfileElementDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OneStopWebAPI.DTO">
  <SecurityProfileElementDTO>
    <ElementDescription>sample string 3</ElementDescription>
    <ElementKey>1</ElementKey>
    <ElementName>sample string 2</ElementName>
    <IsAllowed>true</IsAllowed>
  </SecurityProfileElementDTO>
  <SecurityProfileElementDTO>
    <ElementDescription>sample string 3</ElementDescription>
    <ElementKey>1</ElementKey>
    <ElementName>sample string 2</ElementName>
    <IsAllowed>true</IsAllowed>
  </SecurityProfileElementDTO>
</ArrayOfSecurityProfileElementDTO>