GET eo-members/events-attended?ClientId={ClientId}&user_id={user_id}

Retrieve events list attended by particular User Id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ClientId

ClientId

string

Required

user_id

User Id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

NameDescriptionTypeAdditional information
EventId

string

None.

EventName

string

None.

EventScope

string

None.

EventType

string

None.

EventTypeId

string

None.

EventHost

string

None.

EventHostEmail

string

None.

EventStartDate

string

None.

EventEndDate

string

None.

Response Formats

application/json, text/json

Sample:
{
  "EventId": "sample string 1",
  "EventName": "sample string 2",
  "EventScope": "sample string 3",
  "EventType": "sample string 4",
  "EventTypeId": "sample string 5",
  "EventHost": "sample string 6",
  "EventHostEmail": "sample string 7",
  "EventStartDate": "sample string 8",
  "EventEndDate": "sample string 9"
}

application/xml, text/xml

Sample:
<MeEOEventsResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <EventId>sample string 1</EventId>
  <EventName>sample string 2</EventName>
  <EventScope>sample string 3</EventScope>
  <EventType>sample string 4</EventType>
  <EventTypeId>sample string 5</EventTypeId>
  <EventHost>sample string 6</EventHost>
  <EventHostEmail>sample string 7</EventHostEmail>
  <EventStartDate>sample string 8</EventStartDate>
  <EventEndDate>sample string 9</EventEndDate>
</MeEOEventsResult>