GET v1/EventTheme/ListInActivities?eventId={eventId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| eventId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
EventThemeListViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of EventThemeListItemViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"Guid": "ab272503-df5b-456b-81ba-c493d0c38e33",
"Name": "sample string 2",
"Color": "sample string 3",
"FontColor": "sample string 4"
},
{
"Guid": "ab272503-df5b-456b-81ba-c493d0c38e33",
"Name": "sample string 2",
"Color": "sample string 3",
"FontColor": "sample string 4"
}
]
}
application/octet-stream
Sample:
{"Items":[{"Guid":"ab272503-df5b-456b-81ba-c493d0c38e33","Name":"sample string 2","Color":"sample string 3","FontColor":"sample string 4"},{"Guid":"ab272503-df5b-456b-81ba-c493d0c38e33","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>ab272503-df5b-456b-81ba-c493d0c38e33</Guid>
<Name>sample string 2</Name>
</EventThemeListItemViewModel>
<EventThemeListItemViewModel>
<Color>sample string 3</Color>
<FontColor>sample string 4</FontColor>
<Guid>ab272503-df5b-456b-81ba-c493d0c38e33</Guid>
<Name>sample string 2</Name>
</EventThemeListItemViewModel>
</Items>
</EventThemeListViewModel>