From EVEDev
[edit] /char/WalletTransactions.xml.aspx
[edit] Overview
Returns market transactions for a character.
[edit] Data Caching
This method is cached according to the Long Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| userID
| int
| userID of account for authentication.
|
| apiKey
| char(64)
| Full access API key of account.
|
| characterID
| int
| The character you are requesting data for.
|
| beforeTransID
| int
| List of transactions before this transaction ID.
|
[edit] Output XML
<eveapi version="1">
<currentTime>2007-06-18 22:38:52</currentTime>
<result>
<rowset name="transactions">
<row transactionDateTime="2008-06-15 09:27:00" transactionID="661583821" quantity="1"
typeName="Medium Hull Repairer I" typeID="3653" price="100000.00" clientID="1113473668"
clientName="Spencer Noffke" stationID="60011749"
stationName="Luminaire VII - Moon 6 - Federation Navy Assembly Plant"
transactionType="sell" transactionFor="personal" />
<row transactionDateTime="2008-06-15 08:57:00" transactionID="661564124" quantity="1"
typeName="Photon Scattering Field I" typeID="2293" price="100000.00" clientID="1542532375"
clientName="Cpt Luna" stationID="60011749"
stationName="Luminaire VII - Moon 6 - Federation Navy Assembly Plant"
transactionType="sell" transactionFor="personal" />
<row transactionDateTime="2008-05-26 19:21:00" transactionID="645542110" quantity="1"
typeName="Gallente Shuttle" typeID="11129" price="25000.00" clientID="811272028"
clientName="Quark Kunnin" stationID="60009367"
stationName="Inghenges VII - Federal Freight Storage"
transactionType="buy" transactionFor="personal" />
<row transactionDateTime="2007-12-30 14:46:00" transactionID="514892332" quantity="486"
typeName="Gallente Federation Starbase Charter" typeID="24594" price="801.02" clientID="802387143"
clientName="Wnsnte" stationID="60011737"
stationName="Oursulaert VII - Moon 1 - Federation Navy Testing Facilities"
transactionType="buy" transactionFor="corporation" />
</rowset>
</result>
<cachedUntil>2007-06-18 22:36:09</cachedUntil>
</eveapi>
[edit] Output Rowset Columns
| Name
| Type
| Description
|
| transactionDateTime
| date string
| Date & time of the transaction
|
| transactionID
| int
| Transaction ID. Guaranteed to be unique with this page call; subject to renumbering periodically. Use the last listed transactionID with the beforeTransID argument to walk the list. See Journal Walking.
|
| quantity
| int
| Number of items bought/sold.
|
| typeName
| string
| Name of item bought/sold.
|
| typeID
| int
| ID of item. See invTypes table.
|
| price
| decimal
| The amount per unit paid.
|
| clientID
| int
| Character or corporation ID of the other party. If buying from an NPC corporation, see crpNPCCorporations and eveNames.
|
| clientName
| string
| Name of other party.
|
| stationID
| int
| Station in which the transaction took place. See staStations.
|
| stationName
| string
| Name of the station in which the transaction took place.
|
| transactionType
| string
| "buy" or "sell"
|
| transactionFor
| string
| "personal" or "corporation"
|