GET api/v1.0/Events/GetEventEnabledCommunityList

Gets a collection of allowed communities for the current user that has an associated calendar.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A key value pair list of communities

Dictionary of globally unique identifier [key] and string [value]

Response Formats

application/json, text/json

Sample:
{
  "e5fb3aa0-998f-4bb8-b9af-cc0495a5f2f2": "sample string 2",
  "d239109c-aa8d-4956-9b64-3d430f3c008f": "sample string 4"
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfguidstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfguidstring>
    <Key>e5fb3aa0-998f-4bb8-b9af-cc0495a5f2f2</Key>
    <Value>sample string 2</Value>
  </KeyValueOfguidstring>
  <KeyValueOfguidstring>
    <Key>d239109c-aa8d-4956-9b64-3d430f3c008f</Key>
    <Value>sample string 4</Value>
  </KeyValueOfguidstring>
</ArrayOfKeyValueOfguidstring>