GET api/v2.0/Events/CommunityEventAttendance?communityId={communityId}&numberOfMeetings={numberOfMeetings}

Returns a list of contacts that participated in the last x community events. The event has to be in the 'done state' to count as a recent meeting.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
communityId

Id of the community we want event information from.

globally unique identifier

Required

numberOfMeetings

Number of the most resent meetings we want attendance info from.

integer

Required

Body Parameters

None.

Response Information

Resource Description

List of participants

Collection of globally unique identifier

Response Formats

application/json, text/json

Sample:
[
  "1286e28a-3b7e-41c2-91a3-1f44f9ffc299",
  "e5783213-2eee-46ce-8d3a-94987e0cffe1"
]

application/xml, text/xml

Sample:
<ArrayOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <guid>1286e28a-3b7e-41c2-91a3-1f44f9ffc299</guid>
  <guid>e5783213-2eee-46ce-8d3a-94987e0cffe1</guid>
</ArrayOfguid>