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": "d3aa6553-7aa7-4362-b274-694aaa0044bc",
      "EventGuid": "0b3af8db-3585-4c5b-9f0e-0e05af35afd5"
    },
    {
      "PersonGuid": "d3aa6553-7aa7-4362-b274-694aaa0044bc",
      "EventGuid": "0b3af8db-3585-4c5b-9f0e-0e05af35afd5"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"d3aa6553-7aa7-4362-b274-694aaa0044bc","EventGuid":"0b3af8db-3585-4c5b-9f0e-0e05af35afd5"},{"PersonGuid":"d3aa6553-7aa7-4362-b274-694aaa0044bc","EventGuid":"0b3af8db-3585-4c5b-9f0e-0e05af35afd5"}]}

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>0b3af8db-3585-4c5b-9f0e-0e05af35afd5</EventGuid>
      <PersonGuid>d3aa6553-7aa7-4362-b274-694aaa0044bc</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>0b3af8db-3585-4c5b-9f0e-0e05af35afd5</EventGuid>
      <PersonGuid>d3aa6553-7aa7-4362-b274-694aaa0044bc</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>