GET v1/EventTheme/GuidName?eventId={eventId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eventId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EventThemeListItemViewModel
NameDescriptionTypeAdditional information
Guid

globally unique identifier

None.

Name

string

None.

Color

string

None.

FontColor

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Guid": "5ac4cd00-f5ba-47ad-9a78-2e4256053b78",
    "Name": "sample string 2",
    "Color": "sample string 3",
    "FontColor": "sample string 4"
  },
  {
    "Guid": "5ac4cd00-f5ba-47ad-9a78-2e4256053b78",
    "Name": "sample string 2",
    "Color": "sample string 3",
    "FontColor": "sample string 4"
  }
]

application/octet-stream

Sample:
[{"Guid":"5ac4cd00-f5ba-47ad-9a78-2e4256053b78","Name":"sample string 2","Color":"sample string 3","FontColor":"sample string 4"},{"Guid":"5ac4cd00-f5ba-47ad-9a78-2e4256053b78","Name":"sample string 2","Color":"sample string 3","FontColor":"sample string 4"}]

application/xml, text/xml

Sample:
<ArrayOfEventThemeListItemViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
  <EventThemeListItemViewModel>
    <Color>sample string 3</Color>
    <FontColor>sample string 4</FontColor>
    <Guid>5ac4cd00-f5ba-47ad-9a78-2e4256053b78</Guid>
    <Name>sample string 2</Name>
  </EventThemeListItemViewModel>
  <EventThemeListItemViewModel>
    <Color>sample string 3</Color>
    <FontColor>sample string 4</FontColor>
    <Guid>5ac4cd00-f5ba-47ad-9a78-2e4256053b78</Guid>
    <Name>sample string 2</Name>
  </EventThemeListItemViewModel>
</ArrayOfEventThemeListItemViewModel>