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": "1e2d2d89-c1cf-4716-99be-425eede6d5a2",
      "EventGuid": "dd361a0b-f52f-4dcc-861d-3b413c0886f1"
    },
    {
      "PersonGuid": "1e2d2d89-c1cf-4716-99be-425eede6d5a2",
      "EventGuid": "dd361a0b-f52f-4dcc-861d-3b413c0886f1"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"1e2d2d89-c1cf-4716-99be-425eede6d5a2","EventGuid":"dd361a0b-f52f-4dcc-861d-3b413c0886f1"},{"PersonGuid":"1e2d2d89-c1cf-4716-99be-425eede6d5a2","EventGuid":"dd361a0b-f52f-4dcc-861d-3b413c0886f1"}]}

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>dd361a0b-f52f-4dcc-861d-3b413c0886f1</EventGuid>
      <PersonGuid>1e2d2d89-c1cf-4716-99be-425eede6d5a2</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>dd361a0b-f52f-4dcc-861d-3b413c0886f1</EventGuid>
      <PersonGuid>1e2d2d89-c1cf-4716-99be-425eede6d5a2</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>