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": "1f14856f-2a18-409d-8590-ccd706764499",
      "EventGuid": "3b50d0ba-e9b8-44df-8dc3-4201c8421cbe"
    },
    {
      "PersonGuid": "1f14856f-2a18-409d-8590-ccd706764499",
      "EventGuid": "3b50d0ba-e9b8-44df-8dc3-4201c8421cbe"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"1f14856f-2a18-409d-8590-ccd706764499","EventGuid":"3b50d0ba-e9b8-44df-8dc3-4201c8421cbe"},{"PersonGuid":"1f14856f-2a18-409d-8590-ccd706764499","EventGuid":"3b50d0ba-e9b8-44df-8dc3-4201c8421cbe"}]}

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>3b50d0ba-e9b8-44df-8dc3-4201c8421cbe</EventGuid>
      <PersonGuid>1f14856f-2a18-409d-8590-ccd706764499</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>3b50d0ba-e9b8-44df-8dc3-4201c8421cbe</EventGuid>
      <PersonGuid>1f14856f-2a18-409d-8590-ccd706764499</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>