From EVEDev
[edit] /account/Characters.xml.aspx
[edit] Overview
Returns a list of all characters on an account.
[edit] Data Caching
This method is cached according to the Short Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| userID
| int
| userID of account for authentication.
|
| apiKey
| char(64)
| Limited or Full access API key of account.
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="1">
<currentTime>2007-12-12 11:48:50</currentTime>
<result>
<rowset name="characters" key="characterID" columns="name,characterID,corporationName,corporationID">
<row name="Mary" characterID="150267069"
corporationName="Starbase Anchoring Corp" corporationID="150279367" />
<row name="Marcus" characterID="150302299"
corporationName="Marcus Corp" corporationID="150333466" />
<row name="Dieinafire" characterID="150340823"
corporationName="Center for Advanced Studies" corporationID="1000169" />
</rowset>
</result>
<cachedUntil>2007-12-12 12:48:50</cachedUntil>
</eveapi>
[edit] Output Rowset Columns
| Name
| Type
| Description
|
| name
| string
| Name of the character.
|
| characterID
| int
| ID of the character.
|
| corporationName
| string
| Name of the corporation the character is a member of.
|
| corporationID
| int
| ID of the corporation the character is a member of.
|