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": "90f51f4b-eec3-4794-9b98-94991e84ea8d",
"EventGuid": "f2e261b7-9ce2-4e79-8b6c-b7fe244e7856"
},
{
"PersonGuid": "90f51f4b-eec3-4794-9b98-94991e84ea8d",
"EventGuid": "f2e261b7-9ce2-4e79-8b6c-b7fe244e7856"
}
]
}
application/octet-stream
Sample:
{"Items":[{"PersonGuid":"90f51f4b-eec3-4794-9b98-94991e84ea8d","EventGuid":"f2e261b7-9ce2-4e79-8b6c-b7fe244e7856"},{"PersonGuid":"90f51f4b-eec3-4794-9b98-94991e84ea8d","EventGuid":"f2e261b7-9ce2-4e79-8b6c-b7fe244e7856"}]}
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>f2e261b7-9ce2-4e79-8b6c-b7fe244e7856</EventGuid>
<PersonGuid>90f51f4b-eec3-4794-9b98-94991e84ea8d</PersonGuid>
</UserEventListItemViewModel>
<UserEventListItemViewModel>
<EventGuid>f2e261b7-9ce2-4e79-8b6c-b7fe244e7856</EventGuid>
<PersonGuid>90f51f4b-eec3-4794-9b98-94991e84ea8d</PersonGuid>
</UserEventListItemViewModel>
</Items>
</UserEventListViewModel>