GET v1/UserEvent/List/Person/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
UserEventListViewModelName | Description | Type | Additional information |
---|---|---|---|
Items | Collection of UserEventListItemViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Items": [ { "PersonGuid": "59bba342-010d-45f9-9f9a-498e10cf8406", "EventGuid": "e6b907b3-924c-47fd-9cda-3914eb6f51ff" }, { "PersonGuid": "59bba342-010d-45f9-9f9a-498e10cf8406", "EventGuid": "e6b907b3-924c-47fd-9cda-3914eb6f51ff" } ] }
application/octet-stream
Sample:
{"Items":[{"PersonGuid":"59bba342-010d-45f9-9f9a-498e10cf8406","EventGuid":"e6b907b3-924c-47fd-9cda-3914eb6f51ff"},{"PersonGuid":"59bba342-010d-45f9-9f9a-498e10cf8406","EventGuid":"e6b907b3-924c-47fd-9cda-3914eb6f51ff"}]}
application/xml, text/xml
Sample:
<UserEventListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List"> <Items> <UserEventListItemViewModel> <EventGuid>e6b907b3-924c-47fd-9cda-3914eb6f51ff</EventGuid> <PersonGuid>59bba342-010d-45f9-9f9a-498e10cf8406</PersonGuid> </UserEventListItemViewModel> <UserEventListItemViewModel> <EventGuid>e6b907b3-924c-47fd-9cda-3914eb6f51ff</EventGuid> <PersonGuid>59bba342-010d-45f9-9f9a-498e10cf8406</PersonGuid> </UserEventListItemViewModel> </Items> </UserEventListViewModel>