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": "3d455de8-932c-4655-a833-f161b2ffb7ca",
      "EventGuid": "2d4ab6c6-22c5-4d88-9cb9-ea0283000591"
    },
    {
      "PersonGuid": "3d455de8-932c-4655-a833-f161b2ffb7ca",
      "EventGuid": "2d4ab6c6-22c5-4d88-9cb9-ea0283000591"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"3d455de8-932c-4655-a833-f161b2ffb7ca","EventGuid":"2d4ab6c6-22c5-4d88-9cb9-ea0283000591"},{"PersonGuid":"3d455de8-932c-4655-a833-f161b2ffb7ca","EventGuid":"2d4ab6c6-22c5-4d88-9cb9-ea0283000591"}]}

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>2d4ab6c6-22c5-4d88-9cb9-ea0283000591</EventGuid>
      <PersonGuid>3d455de8-932c-4655-a833-f161b2ffb7ca</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>2d4ab6c6-22c5-4d88-9cb9-ea0283000591</EventGuid>
      <PersonGuid>3d455de8-932c-4655-a833-f161b2ffb7ca</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>