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": "efdcb7b2-a5b8-4547-9cce-db1f83e40392",
      "EventGuid": "ae748aed-e428-4ddf-8e06-008c0139cde5"
    },
    {
      "PersonGuid": "efdcb7b2-a5b8-4547-9cce-db1f83e40392",
      "EventGuid": "ae748aed-e428-4ddf-8e06-008c0139cde5"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"efdcb7b2-a5b8-4547-9cce-db1f83e40392","EventGuid":"ae748aed-e428-4ddf-8e06-008c0139cde5"},{"PersonGuid":"efdcb7b2-a5b8-4547-9cce-db1f83e40392","EventGuid":"ae748aed-e428-4ddf-8e06-008c0139cde5"}]}

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>ae748aed-e428-4ddf-8e06-008c0139cde5</EventGuid>
      <PersonGuid>efdcb7b2-a5b8-4547-9cce-db1f83e40392</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>ae748aed-e428-4ddf-8e06-008c0139cde5</EventGuid>
      <PersonGuid>efdcb7b2-a5b8-4547-9cce-db1f83e40392</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>