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": "9f1bae57-c692-428b-9f11-cfe4cd1671c8",
      "EventGuid": "57145547-30fd-4374-9766-8b23d468b365"
    },
    {
      "PersonGuid": "9f1bae57-c692-428b-9f11-cfe4cd1671c8",
      "EventGuid": "57145547-30fd-4374-9766-8b23d468b365"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"9f1bae57-c692-428b-9f11-cfe4cd1671c8","EventGuid":"57145547-30fd-4374-9766-8b23d468b365"},{"PersonGuid":"9f1bae57-c692-428b-9f11-cfe4cd1671c8","EventGuid":"57145547-30fd-4374-9766-8b23d468b365"}]}

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>57145547-30fd-4374-9766-8b23d468b365</EventGuid>
      <PersonGuid>9f1bae57-c692-428b-9f11-cfe4cd1671c8</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>57145547-30fd-4374-9766-8b23d468b365</EventGuid>
      <PersonGuid>9f1bae57-c692-428b-9f11-cfe4cd1671c8</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>