GET v1/EventTheme/List

Request Information

URI Parameters

NameDescriptionTypeAdditional information
EventGuid

globally unique identifier

None.

Types

Collection of ThemeType

None.

Skip

integer

None.

Take

integer

None.

SearchString

string

None.

SortDirection

SortDirection

None.

SortName

ListSortName

None.

Body Parameters

None.

Response Information

Resource Description

EventThemeListViewModel
NameDescriptionTypeAdditional information
Items

Collection of EventThemeListItemViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "Guid": "16daa29a-1b40-4799-8fdd-9edeabbf1e78",
      "Name": "sample string 2",
      "Color": "sample string 3",
      "FontColor": "sample string 4"
    },
    {
      "Guid": "16daa29a-1b40-4799-8fdd-9edeabbf1e78",
      "Name": "sample string 2",
      "Color": "sample string 3",
      "FontColor": "sample string 4"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"Guid":"16daa29a-1b40-4799-8fdd-9edeabbf1e78","Name":"sample string 2","Color":"sample string 3","FontColor":"sample string 4"},{"Guid":"16daa29a-1b40-4799-8fdd-9edeabbf1e78","Name":"sample string 2","Color":"sample string 3","FontColor":"sample string 4"}]}

application/xml, text/xml

Sample:
<EventThemeListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
  <Items>
    <EventThemeListItemViewModel>
      <Color>sample string 3</Color>
      <FontColor>sample string 4</FontColor>
      <Guid>16daa29a-1b40-4799-8fdd-9edeabbf1e78</Guid>
      <Name>sample string 2</Name>
    </EventThemeListItemViewModel>
    <EventThemeListItemViewModel>
      <Color>sample string 3</Color>
      <FontColor>sample string 4</FontColor>
      <Guid>16daa29a-1b40-4799-8fdd-9edeabbf1e78</Guid>
      <Name>sample string 2</Name>
    </EventThemeListItemViewModel>
  </Items>
</EventThemeListViewModel>