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": "e8ef1b7a-287a-494d-bb31-d71fe98edc4c",
      "EventGuid": "7131aa2c-ae35-4a81-b2f6-3482cd4cc733"
    },
    {
      "PersonGuid": "e8ef1b7a-287a-494d-bb31-d71fe98edc4c",
      "EventGuid": "7131aa2c-ae35-4a81-b2f6-3482cd4cc733"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"e8ef1b7a-287a-494d-bb31-d71fe98edc4c","EventGuid":"7131aa2c-ae35-4a81-b2f6-3482cd4cc733"},{"PersonGuid":"e8ef1b7a-287a-494d-bb31-d71fe98edc4c","EventGuid":"7131aa2c-ae35-4a81-b2f6-3482cd4cc733"}]}

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>7131aa2c-ae35-4a81-b2f6-3482cd4cc733</EventGuid>
      <PersonGuid>e8ef1b7a-287a-494d-bb31-d71fe98edc4c</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>7131aa2c-ae35-4a81-b2f6-3482cd4cc733</EventGuid>
      <PersonGuid>e8ef1b7a-287a-494d-bb31-d71fe98edc4c</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>