From EVEDev
[edit] /char/CalendarEventAttendees.xml.aspx
[edit] Overview
Returns a list of all invited attendees for a given event.
NOTE: A call to char/UpcomingCalendarEvents.xml.aspx must be made prior to calling this API. Otherwise you will receive an error:
216:Calendar Event List not populated with upcoming events. You cannot request any random eventID.
[edit] Data Caching
This method is cached according to the Modified Short Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| apiKey
| char(64)
| Full access API key of account.
|
| userID
| int
| userID of account for authentication.
|
| characterID
| int
| ID of the character
|
| eventIDs
| int
| IDs of the events (you can only query your own events)
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi>
<currentTime>2010-12-12 11:49:41</currentTime>
<result>
<rowset name="eventAttendees" key="characterID" columns="characterID,characterName,response">
<row characterID="123456789" characterName="Jane Doe" response="Accepted" />
<row characterID="987654321" characterName="John Doe" response="Tentative" />
<row characterID="192837645" characterName="Another Doe" response="Declined" />
<row characterID="918273465" characterName="Doe the Third" response="Undecided" />
</rowset>
</result>
<cachedUntil>2010-12-12 11:59:41</cachedUntil>
</eveapi>
[edit] Output Rowset Columns
| Name
| type
| Description
|
| characterID
| long
| ID of the character.
|
| characterName
| string
| Name of the character.
|
| response
| string
| The characters response - Can be one of these {"Undecided", "Accepted", "Declined" or "Tentative"} - "Undecided" per default.
|