From EVEDev
[edit] /char/Medals.xml.aspx
[edit] Overview
Returns a list of medals the character has.
[edit] Data Caching
This method is cached according to the Long Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| apiKey
| char(64)
| Full access API key of account.
|
| characterID
| int
| characterID of character that you want to access medals for.
|
| userID
| int
| userID of account for authentication.
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2008-12-06 23:18:18</currentTime>
<result>
<rowset name="currentCorporation" key="medalID" columns="medalID,reason,status,issuerID,issued" />
<rowset name="otherCorporations" key="medalID" columns="medalID,reason,status,issuerID,issued,corporationID,title,description">
<row medalID="4106" reason="For continued support, loyalty and dedication towards the Centre for Advanced Studies"
status="private" issuerID="132533870" issued="2008-11-25 10:36:01" corporationID="1711141370" title="Medal of Service"
description="For taking initiative and making an extraordinary contribution towards the corporation"/>
</rowset>
</result>
<cachedUntil>2008-12-07 22:18:18</cachedUntil>
</eveapi>
[edit] Output Rowset Columns
| Name
| Type
| Description
|
| medalID
| int
| Unique medal ID for this medal.
|
| reason
| string
| Issuer entered reason.
|
| status
| string
| Is this medal viewable to the public through the Character Info Sheet? (Options private / public?)
|
| issuerID
| int
| Issuing character ID.
|
| issued
| datetime
| When this medal was issued.
|
| corporationID
| int
| Corporation ID of issuing corporation.
|
| title
| string
| Title of Medal as displayed in-game.
|
| description
| string
| Issuer entered description of what the medal is for/about.
|