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": "eb6a7416-52a8-4749-aea2-73e7f0aad91c",
      "EventGuid": "52d6b6b0-7707-4ac2-8593-bb4b98803a02"
    },
    {
      "PersonGuid": "eb6a7416-52a8-4749-aea2-73e7f0aad91c",
      "EventGuid": "52d6b6b0-7707-4ac2-8593-bb4b98803a02"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"eb6a7416-52a8-4749-aea2-73e7f0aad91c","EventGuid":"52d6b6b0-7707-4ac2-8593-bb4b98803a02"},{"PersonGuid":"eb6a7416-52a8-4749-aea2-73e7f0aad91c","EventGuid":"52d6b6b0-7707-4ac2-8593-bb4b98803a02"}]}

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>52d6b6b0-7707-4ac2-8593-bb4b98803a02</EventGuid>
      <PersonGuid>eb6a7416-52a8-4749-aea2-73e7f0aad91c</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>52d6b6b0-7707-4ac2-8593-bb4b98803a02</EventGuid>
      <PersonGuid>eb6a7416-52a8-4749-aea2-73e7f0aad91c</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>