GET v1/EventContent/List?EventGuid={EventGuid}&ParentGuid={ParentGuid}&EventPhase={EventPhase}&EventContentType={EventContentType}&Hide={Hide}&Skip={Skip}&Take={Take}&SearchString={SearchString}&SortDirection={SortDirection}&SortName={SortName}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
EventGuid

globally unique identifier

None.

ParentGuid

globally unique identifier

None.

EventPhase

EventPhase

None.

EventContentType

EventContentType

None.

Hide

boolean

None.

Skip

integer

None.

Take

integer

None.

SearchString

string

None.

SortDirection

SortDirection

None.

SortName

ListSortName

None.

Body Parameters

None.

Response Information

Resource Description

EventContentListViewModel
NameDescriptionTypeAdditional information
Items

Collection of EventContentListItemViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Guid": "2e716735-f25b-40e2-b29c-6ce9ad0dc54d",
      "Title": "sample string 2",
      "EventContentType": 0,
      "Hide": true,
      "ParentGuid": "f5647387-2d0b-49b5-9fbf-c574215ad911",
      "HasChildren": true,
      "Icon": "sample string 5"
    },
    {
      "Guid": "2e716735-f25b-40e2-b29c-6ce9ad0dc54d",
      "Title": "sample string 2",
      "EventContentType": 0,
      "Hide": true,
      "ParentGuid": "f5647387-2d0b-49b5-9fbf-c574215ad911",
      "HasChildren": true,
      "Icon": "sample string 5"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"Guid":"2e716735-f25b-40e2-b29c-6ce9ad0dc54d","Title":"sample string 2","EventContentType":0,"Hide":true,"ParentGuid":"f5647387-2d0b-49b5-9fbf-c574215ad911","HasChildren":true,"Icon":"sample string 5"},{"Guid":"2e716735-f25b-40e2-b29c-6ce9ad0dc54d","Title":"sample string 2","EventContentType":0,"Hide":true,"ParentGuid":"f5647387-2d0b-49b5-9fbf-c574215ad911","HasChildren":true,"Icon":"sample string 5"}]}

application/xml, text/xml

Sample:
<EventContentListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
  <Items>
    <EventContentListItemViewModel>
      <EventContentType>Unassigned</EventContentType>
      <Guid>2e716735-f25b-40e2-b29c-6ce9ad0dc54d</Guid>
      <HasChildren>true</HasChildren>
      <Hide>true</Hide>
      <Icon>sample string 5</Icon>
      <ParentGuid>f5647387-2d0b-49b5-9fbf-c574215ad911</ParentGuid>
      <Title>sample string 2</Title>
    </EventContentListItemViewModel>
    <EventContentListItemViewModel>
      <EventContentType>Unassigned</EventContentType>
      <Guid>2e716735-f25b-40e2-b29c-6ce9ad0dc54d</Guid>
      <HasChildren>true</HasChildren>
      <Hide>true</Hide>
      <Icon>sample string 5</Icon>
      <ParentGuid>f5647387-2d0b-49b5-9fbf-c574215ad911</ParentGuid>
      <Title>sample string 2</Title>
    </EventContentListItemViewModel>
  </Items>
</EventContentListViewModel>