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": "01917ae7-1054-49b9-8d3b-9c7d366ae266",
"EventGuid": "2b777ffc-8e3f-4c20-952a-bc679df9c021"
},
{
"PersonGuid": "01917ae7-1054-49b9-8d3b-9c7d366ae266",
"EventGuid": "2b777ffc-8e3f-4c20-952a-bc679df9c021"
}
]
}
application/octet-stream
Sample:
{"Items":[{"PersonGuid":"01917ae7-1054-49b9-8d3b-9c7d366ae266","EventGuid":"2b777ffc-8e3f-4c20-952a-bc679df9c021"},{"PersonGuid":"01917ae7-1054-49b9-8d3b-9c7d366ae266","EventGuid":"2b777ffc-8e3f-4c20-952a-bc679df9c021"}]}
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>2b777ffc-8e3f-4c20-952a-bc679df9c021</EventGuid>
<PersonGuid>01917ae7-1054-49b9-8d3b-9c7d366ae266</PersonGuid>
</UserEventListItemViewModel>
<UserEventListItemViewModel>
<EventGuid>2b777ffc-8e3f-4c20-952a-bc679df9c021</EventGuid>
<PersonGuid>01917ae7-1054-49b9-8d3b-9c7d366ae266</PersonGuid>
</UserEventListItemViewModel>
</Items>
</UserEventListViewModel>