GET v1/UserEvent/List/Person/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

UserEventListViewModel
NameDescriptionTypeAdditional information
Items

Collection of UserEventListItemViewModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Items": [
    {
      "PersonGuid": "cb31cde6-41d1-4f0d-a228-b2488e5c25cd",
      "EventGuid": "a9e606d7-d175-4168-9eba-4305baacd1df"
    },
    {
      "PersonGuid": "cb31cde6-41d1-4f0d-a228-b2488e5c25cd",
      "EventGuid": "a9e606d7-d175-4168-9eba-4305baacd1df"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"cb31cde6-41d1-4f0d-a228-b2488e5c25cd","EventGuid":"a9e606d7-d175-4168-9eba-4305baacd1df"},{"PersonGuid":"cb31cde6-41d1-4f0d-a228-b2488e5c25cd","EventGuid":"a9e606d7-d175-4168-9eba-4305baacd1df"}]}

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>a9e606d7-d175-4168-9eba-4305baacd1df</EventGuid>
      <PersonGuid>cb31cde6-41d1-4f0d-a228-b2488e5c25cd</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>a9e606d7-d175-4168-9eba-4305baacd1df</EventGuid>
      <PersonGuid>cb31cde6-41d1-4f0d-a228-b2488e5c25cd</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>