GET Events/GetProjectDataMartEventPermissions?projectID={projectID}&dataMartID={dataMartID}

Returns all of the event permissions for the specified Project and DataMart

Request Information

URI Parameters

NameDescriptionTypeAdditional information
projectID

globally unique identifier

Required

dataMartID

globally unique identifier

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ProjectDataMartEventDTO
NameDescriptionTypeAdditional information
ProjectID

ID of the Project

globally unique identifier

None.

DataMartID

ID of DataMart

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": "a0937c30-3ad9-43ec-a77e-63630d4de76f",
      "DataMartID": "e05b12d9-2c81-46da-8e8a-28c22ed128ad",
      "SecurityGroupID": "d56c9fd5-13f2-49b6-91f6-2650e90de88e",
      "SecurityGroup": "sample string 4",
      "Allowed": true,
      "Overridden": true,
      "EventID": "ee67bff9-e0ee-4767-96be-cc07c02c5aa0",
      "Event": "sample string 7"
    },
    {
      "ProjectID": "a0937c30-3ad9-43ec-a77e-63630d4de76f",
      "DataMartID": "e05b12d9-2c81-46da-8e8a-28c22ed128ad",
      "SecurityGroupID": "d56c9fd5-13f2-49b6-91f6-2650e90de88e",
      "SecurityGroup": "sample string 4",
      "Allowed": true,
      "Overridden": true,
      "EventID": "ee67bff9-e0ee-4767-96be-cc07c02c5aa0",
      "Event": "sample string 7"
    }
  ]
}

text/javascript

Sample:
{"results":[{"ProjectID":"a0937c30-3ad9-43ec-a77e-63630d4de76f","DataMartID":"e05b12d9-2c81-46da-8e8a-28c22ed128ad","SecurityGroupID":"d56c9fd5-13f2-49b6-91f6-2650e90de88e","SecurityGroup":"sample string 4","Allowed":true,"Overridden":true,"EventID":"ee67bff9-e0ee-4767-96be-cc07c02c5aa0","Event":"sample string 7"},{"ProjectID":"a0937c30-3ad9-43ec-a77e-63630d4de76f","DataMartID":"e05b12d9-2c81-46da-8e8a-28c22ed128ad","SecurityGroupID":"d56c9fd5-13f2-49b6-91f6-2650e90de88e","SecurityGroup":"sample string 4","Allowed":true,"Overridden":true,"EventID":"ee67bff9-e0ee-4767-96be-cc07c02c5aa0","Event":"sample string 7"}]}

application/bson

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

application/xml, text/xml

Sample:
<ArrayOfProjectDataMartEventDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ProjectDataMartEventDTO>
    <Allowed>true</Allowed>
    <Event>sample string 7</Event>
    <EventID>ee67bff9-e0ee-4767-96be-cc07c02c5aa0</EventID>
    <Overridden>true</Overridden>
    <SecurityGroup>sample string 4</SecurityGroup>
    <SecurityGroupID>d56c9fd5-13f2-49b6-91f6-2650e90de88e</SecurityGroupID>
    <DataMartID>e05b12d9-2c81-46da-8e8a-28c22ed128ad</DataMartID>
    <ProjectID>a0937c30-3ad9-43ec-a77e-63630d4de76f</ProjectID>
  </ProjectDataMartEventDTO>
  <ProjectDataMartEventDTO>
    <Allowed>true</Allowed>
    <Event>sample string 7</Event>
    <EventID>ee67bff9-e0ee-4767-96be-cc07c02c5aa0</EventID>
    <Overridden>true</Overridden>
    <SecurityGroup>sample string 4</SecurityGroup>
    <SecurityGroupID>d56c9fd5-13f2-49b6-91f6-2650e90de88e</SecurityGroupID>
    <DataMartID>e05b12d9-2c81-46da-8e8a-28c22ed128ad</DataMartID>
    <ProjectID>a0937c30-3ad9-43ec-a77e-63630d4de76f</ProjectID>
  </ProjectDataMartEventDTO>
</ArrayOfProjectDataMartEventDTO>