GET api/EventRelationships
Get EventRelationships List
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ListEventRelationship| Name | Description | Type | Additional information | 
|---|---|---|---|
| EventRelationshipId | integer | None. | |
| ParentEventId | integer | None. | |
| ChildEventId | integer | None. | |
| IsActive | boolean | None. | |
| IsDeleted | boolean | None. | |
| EventName | string | None. | |
| EventCode | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "EventRelationshipId": 1,
    "ParentEventId": 2,
    "ChildEventId": 3,
    "IsActive": true,
    "IsDeleted": true,
    "EventName": "sample string 4",
    "EventCode": "sample string 5"
  },
  {
    "EventRelationshipId": 1,
    "ParentEventId": 2,
    "ChildEventId": 3,
    "IsActive": true,
    "IsDeleted": true,
    "EventName": "sample string 4",
    "EventCode": "sample string 5"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfListEventRelationship xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers">
  <ListEventRelationship>
    <ChildEventId>3</ChildEventId>
    <EventCode>sample string 5</EventCode>
    <EventName>sample string 4</EventName>
    <EventRelationshipId>1</EventRelationshipId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ParentEventId>2</ParentEventId>
  </ListEventRelationship>
  <ListEventRelationship>
    <ChildEventId>3</ChildEventId>
    <EventCode>sample string 5</EventCode>
    <EventName>sample string 4</EventName>
    <EventRelationshipId>1</EventRelationshipId>
    <IsActive>true</IsActive>
    <IsDeleted>true</IsDeleted>
    <ParentEventId>2</ParentEventId>
  </ListEventRelationship>
</ArrayOfListEventRelationship>