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": "33e49371-6ea3-4f95-be60-bb90bc32a04c",
"EventGuid": "2134f8fe-e6be-4da6-a00d-4666db9ebfec"
},
{
"PersonGuid": "33e49371-6ea3-4f95-be60-bb90bc32a04c",
"EventGuid": "2134f8fe-e6be-4da6-a00d-4666db9ebfec"
}
]
}
application/octet-stream
Sample:
{"Items":[{"PersonGuid":"33e49371-6ea3-4f95-be60-bb90bc32a04c","EventGuid":"2134f8fe-e6be-4da6-a00d-4666db9ebfec"},{"PersonGuid":"33e49371-6ea3-4f95-be60-bb90bc32a04c","EventGuid":"2134f8fe-e6be-4da6-a00d-4666db9ebfec"}]}
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>2134f8fe-e6be-4da6-a00d-4666db9ebfec</EventGuid>
<PersonGuid>33e49371-6ea3-4f95-be60-bb90bc32a04c</PersonGuid>
</UserEventListItemViewModel>
<UserEventListItemViewModel>
<EventGuid>2134f8fe-e6be-4da6-a00d-4666db9ebfec</EventGuid>
<PersonGuid>33e49371-6ea3-4f95-be60-bb90bc32a04c</PersonGuid>
</UserEventListItemViewModel>
</Items>
</UserEventListViewModel>