From EVEDev
[edit] /char/SkillQueue.xml.aspx
[edit] Overview
Returns XML document containing the skill queue of the character.
[edit] Data Caching
This method is cached according to the Modified Short Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| apiKey
| char(64)
| Limited access API key of account.
|
| characterID
| int
| Character you wish to request data from.
|
| userID
| int
| userID of account for authentication.
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2009-03-18 13:19:43</currentTime>
<result>
<rowset name="skillqueue" key="queuePosition" columns="queuePosition,typeID,level,startSP,endSP,startTime,endTime">
<row queuePosition="1" typeID="11441" level="3" startSP="7072" endSP="40000" startTime="2009-03-18 02:01:06" endTime="2009-03-18 15:19:21" />
<row queuePosition="2" typeID="20533" level="4" startSP="112000" endSP="633542" startTime="2009-03-18 15:19:21" endTime="2009-03-30 03:16:14" />
</rowset>
</result>
<cachedUntil>2009-03-18 13:34:43</cachedUntil>
</eveapi>
[edit] Output Rowset Columns
| Name
| Type
| Description
|
| queuePosition
| int
| The 0-based position in the queue.
|
| typeID
| int
| The ID of the trained skill.
|
| level
| int
| The level of this skill.
|
| startSP
| int
| The number of skillpoints the character had for this skill when this training was started. Note there is bug with skills paused then resumed while the player is offline, the number of SP is the one at the beginning of the level, not the one when the skill was resumed.
|
| endSP
| int
| The number of skillpoints the player will have when this skill is completed.
|
| startTime
| datetime
| The time this training started, or null if the queue is currently paused.
|
| endTime
| datetime
| The time this training should complete, or null if the queue is currently paused.
|