GET Events/GetUserEventPermissions?userID={userID}

Returns all of the events for the specified user

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UserEventDTO
NameDescriptionTypeAdditional information
UserID

ID of the user

globally unique identifier

None.

SecurityGroupID

ID of Security Group

globally unique identifier

None.

SecurityGroup

Security Group

string

None.

Allowed

Determines that the Security Group is Allowed

boolean

None.

Overridden

Determines that the Security Group is Overridden

boolean

None.

EventID

ID of an Event

globally unique identifier

None.

Event

Event

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "UserID": "a8e24f0b-9ab2-4d1f-b424-2677696b66e5",
      "SecurityGroupID": "0b3d9c0e-2e22-480d-9dd0-ae2c4aa8fd12",
      "SecurityGroup": "sample string 3",
      "Allowed": true,
      "Overridden": true,
      "EventID": "824fdcad-b603-45a9-9215-8a0811fdcf75",
      "Event": "sample string 6"
    },
    {
      "UserID": "a8e24f0b-9ab2-4d1f-b424-2677696b66e5",
      "SecurityGroupID": "0b3d9c0e-2e22-480d-9dd0-ae2c4aa8fd12",
      "SecurityGroup": "sample string 3",
      "Allowed": true,
      "Overridden": true,
      "EventID": "824fdcad-b603-45a9-9215-8a0811fdcf75",
      "Event": "sample string 6"
    }
  ]
}

text/javascript

Sample:
{"results":[{"UserID":"a8e24f0b-9ab2-4d1f-b424-2677696b66e5","SecurityGroupID":"0b3d9c0e-2e22-480d-9dd0-ae2c4aa8fd12","SecurityGroup":"sample string 3","Allowed":true,"Overridden":true,"EventID":"824fdcad-b603-45a9-9215-8a0811fdcf75","Event":"sample string 6"},{"UserID":"a8e24f0b-9ab2-4d1f-b424-2677696b66e5","SecurityGroupID":"0b3d9c0e-2e22-480d-9dd0-ae2c4aa8fd12","SecurityGroup":"sample string 3","Allowed":true,"Overridden":true,"EventID":"824fdcad-b603-45a9-9215-8a0811fdcf75","Event":"sample string 6"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ArrayOfUserEventDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <UserEventDTO>
    <Allowed>true</Allowed>
    <Event>sample string 6</Event>
    <EventID>824fdcad-b603-45a9-9215-8a0811fdcf75</EventID>
    <Overridden>true</Overridden>
    <SecurityGroup>sample string 3</SecurityGroup>
    <SecurityGroupID>0b3d9c0e-2e22-480d-9dd0-ae2c4aa8fd12</SecurityGroupID>
    <UserID>a8e24f0b-9ab2-4d1f-b424-2677696b66e5</UserID>
  </UserEventDTO>
  <UserEventDTO>
    <Allowed>true</Allowed>
    <Event>sample string 6</Event>
    <EventID>824fdcad-b603-45a9-9215-8a0811fdcf75</EventID>
    <Overridden>true</Overridden>
    <SecurityGroup>sample string 3</SecurityGroup>
    <SecurityGroupID>0b3d9c0e-2e22-480d-9dd0-ae2c4aa8fd12</SecurityGroupID>
    <UserID>a8e24f0b-9ab2-4d1f-b424-2677696b66e5</UserID>
  </UserEventDTO>
</ArrayOfUserEventDTO>