GET v1/EventColor/List?EventGuid={EventGuid}&Skip={Skip}&Take={Take}&SearchString={SearchString}&SortDirection={SortDirection}&SortName={SortName}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
EventGuid | globally unique identifier |
None. |
|
Skip | integer |
None. |
|
Take | integer |
None. |
|
SearchString | string |
None. |
|
SortDirection | SortDirection |
None. |
|
SortName | ListSortName |
None. |
Body Parameters
None.
Response Information
Resource Description
EventColorListViewModelName | Description | Type | Additional information |
---|---|---|---|
Items | Collection of EventColorListItemViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Items": [ { "Guid": "7c223778-05ee-41c4-bde9-1ec4fa027b34", "Name": "sample string 2", "BackgroundColor": "sample string 3", "ForegroundColor": "sample string 4" }, { "Guid": "7c223778-05ee-41c4-bde9-1ec4fa027b34", "Name": "sample string 2", "BackgroundColor": "sample string 3", "ForegroundColor": "sample string 4" } ] }
application/octet-stream
Sample:
{"Items":[{"Guid":"7c223778-05ee-41c4-bde9-1ec4fa027b34","Name":"sample string 2","BackgroundColor":"sample string 3","ForegroundColor":"sample string 4"},{"Guid":"7c223778-05ee-41c4-bde9-1ec4fa027b34","Name":"sample string 2","BackgroundColor":"sample string 3","ForegroundColor":"sample string 4"}]}
application/xml, text/xml
Sample:
<EventColorListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List"> <Items> <EventColorListItemViewModel> <BackgroundColor>sample string 3</BackgroundColor> <ForegroundColor>sample string 4</ForegroundColor> <Guid>7c223778-05ee-41c4-bde9-1ec4fa027b34</Guid> <Name>sample string 2</Name> </EventColorListItemViewModel> <EventColorListItemViewModel> <BackgroundColor>sample string 3</BackgroundColor> <ForegroundColor>sample string 4</ForegroundColor> <Guid>7c223778-05ee-41c4-bde9-1ec4fa027b34</Guid> <Name>sample string 2</Name> </EventColorListItemViewModel> </Items> </EventColorListViewModel>