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": "a87cf2cc-3aa6-44c8-86b8-b57a8261465b",
"EventGuid": "6b4ff5af-2b3c-42e0-b0dc-e567306e1656"
},
{
"PersonGuid": "a87cf2cc-3aa6-44c8-86b8-b57a8261465b",
"EventGuid": "6b4ff5af-2b3c-42e0-b0dc-e567306e1656"
}
]
}
application/octet-stream
Sample:
{"Items":[{"PersonGuid":"a87cf2cc-3aa6-44c8-86b8-b57a8261465b","EventGuid":"6b4ff5af-2b3c-42e0-b0dc-e567306e1656"},{"PersonGuid":"a87cf2cc-3aa6-44c8-86b8-b57a8261465b","EventGuid":"6b4ff5af-2b3c-42e0-b0dc-e567306e1656"}]}
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>6b4ff5af-2b3c-42e0-b0dc-e567306e1656</EventGuid>
<PersonGuid>a87cf2cc-3aa6-44c8-86b8-b57a8261465b</PersonGuid>
</UserEventListItemViewModel>
<UserEventListItemViewModel>
<EventGuid>6b4ff5af-2b3c-42e0-b0dc-e567306e1656</EventGuid>
<PersonGuid>a87cf2cc-3aa6-44c8-86b8-b57a8261465b</PersonGuid>
</UserEventListItemViewModel>
</Items>
</UserEventListViewModel>