From EVEDev
[edit] /eve/CharacterName.xml.aspx
[edit] Overview
Returns the name associated with an ownerID.
[edit] Data Caching
This method is cached according to the Modified Short Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| ids
| string
|
- Comma-separated list of ownerIDs (characterID, agentID, corporationID, allianceID, or factionID) and typeIDs to query
- A hard maximum of 250 IDs passed in. Might change in the future depending on live results.
- Any instances of repeated ids in the string will throw immediate errors with no returns.
- If an ID is passed into the call that does not resolve the call will not return any results regardless of the validity of other ids.
- Trailing commas on the ids input will throw now errors.
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2011-03-02 15:00:07</currentTime>
<result>
<rowset name="characters" key="characterID" columns="name,characterID">
<row name="CCP Garthagk" characterID="797400947" />
<row name="CCP Prism X" characterID="1188435724" />
</rowset>
</result>
<cachedUntil>2011-04-02 15:00:07</cachedUntil>
</eveapi>
[edit] References