GET v1/EventTheme/GuidName?eventId={eventId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| eventId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EventThemeListItemViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Color | string |
None. |
|
| FontColor | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Guid": "178f296f-9099-46a5-a74c-083220e42d3d",
"Name": "sample string 2",
"Color": "sample string 3",
"FontColor": "sample string 4"
},
{
"Guid": "178f296f-9099-46a5-a74c-083220e42d3d",
"Name": "sample string 2",
"Color": "sample string 3",
"FontColor": "sample string 4"
}
]
application/octet-stream
Sample:
[{"Guid":"178f296f-9099-46a5-a74c-083220e42d3d","Name":"sample string 2","Color":"sample string 3","FontColor":"sample string 4"},{"Guid":"178f296f-9099-46a5-a74c-083220e42d3d","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>178f296f-9099-46a5-a74c-083220e42d3d</Guid>
<Name>sample string 2</Name>
</EventThemeListItemViewModel>
<EventThemeListItemViewModel>
<Color>sample string 3</Color>
<FontColor>sample string 4</FontColor>
<Guid>178f296f-9099-46a5-a74c-083220e42d3d</Guid>
<Name>sample string 2</Name>
</EventThemeListItemViewModel>
</ArrayOfEventThemeListItemViewModel>