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
UserEventListViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of UserEventListItemViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"PersonGuid": "de0c5795-8802-42e3-b7e4-4c91bffb2adf",
"EventGuid": "812cdc20-8417-4aa1-9fa4-6453e991ac2d"
},
{
"PersonGuid": "de0c5795-8802-42e3-b7e4-4c91bffb2adf",
"EventGuid": "812cdc20-8417-4aa1-9fa4-6453e991ac2d"
}
]
}
application/octet-stream
Sample:
{"Items":[{"PersonGuid":"de0c5795-8802-42e3-b7e4-4c91bffb2adf","EventGuid":"812cdc20-8417-4aa1-9fa4-6453e991ac2d"},{"PersonGuid":"de0c5795-8802-42e3-b7e4-4c91bffb2adf","EventGuid":"812cdc20-8417-4aa1-9fa4-6453e991ac2d"}]}
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>812cdc20-8417-4aa1-9fa4-6453e991ac2d</EventGuid>
<PersonGuid>de0c5795-8802-42e3-b7e4-4c91bffb2adf</PersonGuid>
</UserEventListItemViewModel>
<UserEventListItemViewModel>
<EventGuid>812cdc20-8417-4aa1-9fa4-6453e991ac2d</EventGuid>
<PersonGuid>de0c5795-8802-42e3-b7e4-4c91bffb2adf</PersonGuid>
</UserEventListItemViewModel>
</Items>
</UserEventListViewModel>