GET v1/EventTopic

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

EventTopicListViewModel
NameDescriptionTypeAdditional information
Items

Collection of EventTopicListItemViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Guid": "7e40ad66-06b6-4e5a-b491-e1048eac9d92",
      "Name": "sample string 2"
    },
    {
      "Guid": "7e40ad66-06b6-4e5a-b491-e1048eac9d92",
      "Name": "sample string 2"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"Guid":"7e40ad66-06b6-4e5a-b491-e1048eac9d92","Name":"sample string 2"},{"Guid":"7e40ad66-06b6-4e5a-b491-e1048eac9d92","Name":"sample string 2"}]}

application/xml, text/xml

Sample:
<EventTopicListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
  <Items>
    <EventTopicListItemViewModel>
      <Guid>7e40ad66-06b6-4e5a-b491-e1048eac9d92</Guid>
      <Name>sample string 2</Name>
    </EventTopicListItemViewModel>
    <EventTopicListItemViewModel>
      <Guid>7e40ad66-06b6-4e5a-b491-e1048eac9d92</Guid>
      <Name>sample string 2</Name>
    </EventTopicListItemViewModel>
  </Items>
</EventTopicListViewModel>