Official comment
Hi Lance,
Sorry for the late response.
Use the "query" API action and create a request like this:
{ 'q':'select Name,EventCalendar FROM CalendarException' }
The "EventCalendar" will show you the User/Organization/Project which is related to the calendar exception.
This is an example of the query response:
{
"entities": [
{
"id": "/CalendarException/1af9893e-6df2-4fcf-905b-33257724b1cd",
"Name": "Company vacation",
"EventCalendar": {
"id": "/Organization/5237vi7an4xa5m7dek3zwomzj1905"
}
},
{
"id": "/CalendarException/1pt7bacfkwkpmwf2u15xeqp1n2",
"Name": "Reserve",
"EventCalendar": {
"id": "/User/5237vi7an4xa5m7dek3zwomzj1926"
}
},
{
"id": "/CalendarException/3f3gt7hpikk3jmyty1p8agzzj0",
"Name": "Project exception",
"EventCalendar": {
"id": "/Project/5tvxdlpe1vrykb0ek0rfgpjmw1"
}
}
],
"paging": {
"from": 7,
"limit": 100,
"hasMore": false
}
}
I hope this helps,
Elad