GET Events/GetProjectOrganizationEventPermissions?projectID={projectID}&organizationID={organizationID}

Returns all of the Organization events for the specified project

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectID

globally unique identifier

Required

organizationID

globally unique identifier

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ProjectOrganizationEventDTO
NameDescriptionTypeAdditional information
ProjectID

ID of the project

globally unique identifier

None.

OrganizationID

ID of an Organization

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": [
    {
      "ProjectID": "fb6a3372-dc75-4ccf-a8bb-1ad176409bc2",
      "OrganizationID": "53077057-664d-43ed-a625-1a2a8c801dce",
      "SecurityGroupID": "8e1a189a-f710-44bc-8379-f095b0199ba8",
      "SecurityGroup": "sample string 4",
      "Allowed": true,
      "Overridden": true,
      "EventID": "b4d0d7a8-5cdd-4445-8c02-7d5ec0da9c59",
      "Event": "sample string 7"
    },
    {
      "ProjectID": "fb6a3372-dc75-4ccf-a8bb-1ad176409bc2",
      "OrganizationID": "53077057-664d-43ed-a625-1a2a8c801dce",
      "SecurityGroupID": "8e1a189a-f710-44bc-8379-f095b0199ba8",
      "SecurityGroup": "sample string 4",
      "Allowed": true,
      "Overridden": true,
      "EventID": "b4d0d7a8-5cdd-4445-8c02-7d5ec0da9c59",
      "Event": "sample string 7"
    }
  ]
}

text/javascript

Sample:
{"results":[{"ProjectID":"fb6a3372-dc75-4ccf-a8bb-1ad176409bc2","OrganizationID":"53077057-664d-43ed-a625-1a2a8c801dce","SecurityGroupID":"8e1a189a-f710-44bc-8379-f095b0199ba8","SecurityGroup":"sample string 4","Allowed":true,"Overridden":true,"EventID":"b4d0d7a8-5cdd-4445-8c02-7d5ec0da9c59","Event":"sample string 7"},{"ProjectID":"fb6a3372-dc75-4ccf-a8bb-1ad176409bc2","OrganizationID":"53077057-664d-43ed-a625-1a2a8c801dce","SecurityGroupID":"8e1a189a-f710-44bc-8379-f095b0199ba8","SecurityGroup":"sample string 4","Allowed":true,"Overridden":true,"EventID":"b4d0d7a8-5cdd-4445-8c02-7d5ec0da9c59","Event":"sample string 7"}]}

application/bson

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

application/xml, text/xml

Sample:
<ArrayOfProjectOrganizationEventDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ProjectOrganizationEventDTO>
    <Allowed>true</Allowed>
    <Event>sample string 7</Event>
    <EventID>b4d0d7a8-5cdd-4445-8c02-7d5ec0da9c59</EventID>
    <Overridden>true</Overridden>
    <SecurityGroup>sample string 4</SecurityGroup>
    <SecurityGroupID>8e1a189a-f710-44bc-8379-f095b0199ba8</SecurityGroupID>
    <OrganizationID>53077057-664d-43ed-a625-1a2a8c801dce</OrganizationID>
    <ProjectID>fb6a3372-dc75-4ccf-a8bb-1ad176409bc2</ProjectID>
  </ProjectOrganizationEventDTO>
  <ProjectOrganizationEventDTO>
    <Allowed>true</Allowed>
    <Event>sample string 7</Event>
    <EventID>b4d0d7a8-5cdd-4445-8c02-7d5ec0da9c59</EventID>
    <Overridden>true</Overridden>
    <SecurityGroup>sample string 4</SecurityGroup>
    <SecurityGroupID>8e1a189a-f710-44bc-8379-f095b0199ba8</SecurityGroupID>
    <OrganizationID>53077057-664d-43ed-a625-1a2a8c801dce</OrganizationID>
    <ProjectID>fb6a3372-dc75-4ccf-a8bb-1ad176409bc2</ProjectID>
  </ProjectOrganizationEventDTO>
</ArrayOfProjectOrganizationEventDTO>