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": "39ed7a33-2ebe-4af8-b3e7-163a8d1efa7f", "EventGuid": "ff596e62-f66a-4543-bfbc-08ef1cd279d1" }, { "PersonGuid": "39ed7a33-2ebe-4af8-b3e7-163a8d1efa7f", "EventGuid": "ff596e62-f66a-4543-bfbc-08ef1cd279d1" } ] }
application/octet-stream
Sample:
{"Items":[{"PersonGuid":"39ed7a33-2ebe-4af8-b3e7-163a8d1efa7f","EventGuid":"ff596e62-f66a-4543-bfbc-08ef1cd279d1"},{"PersonGuid":"39ed7a33-2ebe-4af8-b3e7-163a8d1efa7f","EventGuid":"ff596e62-f66a-4543-bfbc-08ef1cd279d1"}]}
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>ff596e62-f66a-4543-bfbc-08ef1cd279d1</EventGuid> <PersonGuid>39ed7a33-2ebe-4af8-b3e7-163a8d1efa7f</PersonGuid> </UserEventListItemViewModel> <UserEventListItemViewModel> <EventGuid>ff596e62-f66a-4543-bfbc-08ef1cd279d1</EventGuid> <PersonGuid>39ed7a33-2ebe-4af8-b3e7-163a8d1efa7f</PersonGuid> </UserEventListItemViewModel> </Items> </UserEventListViewModel>