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": "7024bf8d-e644-4eb8-b1a1-c9caf0a98c5f",
      "EventGuid": "09bd2a4a-b8d3-4322-ad99-1009c36ae56d"
    },
    {
      "PersonGuid": "7024bf8d-e644-4eb8-b1a1-c9caf0a98c5f",
      "EventGuid": "09bd2a4a-b8d3-4322-ad99-1009c36ae56d"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"7024bf8d-e644-4eb8-b1a1-c9caf0a98c5f","EventGuid":"09bd2a4a-b8d3-4322-ad99-1009c36ae56d"},{"PersonGuid":"7024bf8d-e644-4eb8-b1a1-c9caf0a98c5f","EventGuid":"09bd2a4a-b8d3-4322-ad99-1009c36ae56d"}]}

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>09bd2a4a-b8d3-4322-ad99-1009c36ae56d</EventGuid>
      <PersonGuid>7024bf8d-e644-4eb8-b1a1-c9caf0a98c5f</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>09bd2a4a-b8d3-4322-ad99-1009c36ae56d</EventGuid>
      <PersonGuid>7024bf8d-e644-4eb8-b1a1-c9caf0a98c5f</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>