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": "e0d1e175-bd70-4ca9-b706-4bb0d1bb8af4",
"EventGuid": "18aaba22-357f-447b-816a-4d3f11229a7a"
},
{
"PersonGuid": "e0d1e175-bd70-4ca9-b706-4bb0d1bb8af4",
"EventGuid": "18aaba22-357f-447b-816a-4d3f11229a7a"
}
]
}
application/octet-stream
Sample:
{"Items":[{"PersonGuid":"e0d1e175-bd70-4ca9-b706-4bb0d1bb8af4","EventGuid":"18aaba22-357f-447b-816a-4d3f11229a7a"},{"PersonGuid":"e0d1e175-bd70-4ca9-b706-4bb0d1bb8af4","EventGuid":"18aaba22-357f-447b-816a-4d3f11229a7a"}]}
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>18aaba22-357f-447b-816a-4d3f11229a7a</EventGuid>
<PersonGuid>e0d1e175-bd70-4ca9-b706-4bb0d1bb8af4</PersonGuid>
</UserEventListItemViewModel>
<UserEventListItemViewModel>
<EventGuid>18aaba22-357f-447b-816a-4d3f11229a7a</EventGuid>
<PersonGuid>e0d1e175-bd70-4ca9-b706-4bb0d1bb8af4</PersonGuid>
</UserEventListItemViewModel>
</Items>
</UserEventListViewModel>