GET v1/EventTheme/List
Request Information
URI Parameters
Name | Description | Type | Additional 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
EventThemeListViewModelName | Description | Type | Additional information |
---|---|---|---|
Items | Collection of EventThemeListItemViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Items": [ { "Guid": "ec70c091-13bb-42aa-8166-62c7de70e356", "Name": "sample string 2", "Color": "sample string 3", "FontColor": "sample string 4" }, { "Guid": "ec70c091-13bb-42aa-8166-62c7de70e356", "Name": "sample string 2", "Color": "sample string 3", "FontColor": "sample string 4" } ] }
application/octet-stream
Sample:
{"Items":[{"Guid":"ec70c091-13bb-42aa-8166-62c7de70e356","Name":"sample string 2","Color":"sample string 3","FontColor":"sample string 4"},{"Guid":"ec70c091-13bb-42aa-8166-62c7de70e356","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>ec70c091-13bb-42aa-8166-62c7de70e356</Guid> <Name>sample string 2</Name> </EventThemeListItemViewModel> <EventThemeListItemViewModel> <Color>sample string 3</Color> <FontColor>sample string 4</FontColor> <Guid>ec70c091-13bb-42aa-8166-62c7de70e356</Guid> <Name>sample string 2</Name> </EventThemeListItemViewModel> </Items> </EventThemeListViewModel>