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": "954e19f6-b841-49a9-8483-d52f3964cc10",
      "EventGuid": "2f8fad50-eb1f-495a-944b-b61fb6f67d71"
    },
    {
      "PersonGuid": "954e19f6-b841-49a9-8483-d52f3964cc10",
      "EventGuid": "2f8fad50-eb1f-495a-944b-b61fb6f67d71"
    }
  ]
}

application/octet-stream

Sample:
{"Items":[{"PersonGuid":"954e19f6-b841-49a9-8483-d52f3964cc10","EventGuid":"2f8fad50-eb1f-495a-944b-b61fb6f67d71"},{"PersonGuid":"954e19f6-b841-49a9-8483-d52f3964cc10","EventGuid":"2f8fad50-eb1f-495a-944b-b61fb6f67d71"}]}

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>2f8fad50-eb1f-495a-944b-b61fb6f67d71</EventGuid>
      <PersonGuid>954e19f6-b841-49a9-8483-d52f3964cc10</PersonGuid>
    </UserEventListItemViewModel>
    <UserEventListItemViewModel>
      <EventGuid>2f8fad50-eb1f-495a-944b-b61fb6f67d71</EventGuid>
      <PersonGuid>954e19f6-b841-49a9-8483-d52f3964cc10</PersonGuid>
    </UserEventListItemViewModel>
  </Items>
</UserEventListViewModel>