APIv2 Char SkillInTraining XML

From EVEDev

Jump to: navigation, search
Image:Api.pngAPI Methods - Category Home - API Libraries - API Usage Examples - API Method Reference - API Page Index

Contents

[edit] /char/SkillInTraining.xml.aspx

[edit] Overview

Returns XML document of the skill the character is currently training.

[edit] Data Caching

This method is cached according to the 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

Character is not training:

 
<eveapi version="1">
  <currentTime>2007-06-21 10:57:10</currentTime>
  <result>
    <skillInTraining>0</skillInTraining>
  </result>
  <cachedUntil>2007-06-21 10:57:20</cachedUntil>
</eveapi>
 

Character training a skill:

 
<eveapi version="2">
  <currentTime>2008-08-17 06:43:00</currentTime>
  <result>
    <currentTQTime offset="0">2008-08-17 06:43:00</currentTQTime>
    <trainingEndTime>2008-08-17 15:29:44</trainingEndTime>
    <trainingStartTime>2008-08-15 04:01:16</trainingStartTime>
    <trainingTypeID>3305</trainingTypeID>
    <trainingStartSP>24000</trainingStartSP>
    <trainingDestinationSP>135765</trainingDestinationSP>
    <trainingToLevel>4</trainingToLevel>
    <skillInTraining>1</skillInTraining>
  </result>
  <cachedUntil>2008-08-17 06:58:00</cachedUntil>
</eveapi>
 

[edit] Output Rowset Columns

Name Type Description
Personal tools