Description
Returns a list of all invited attendees for a given event.
Please note: A call to
Upcoming Calendar Events must be made prior to calling this API. Otherwise you will receive an error.
Call
Result
<?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>
Result attributes
| 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.
|
Top Contributors For This Page