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 Short Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| apiKey
| char(64)
| Full access API key of account.
|
| characterID
| int
| The character you are requesting data for.
|
| userID
| int
| userID of account for authentication.
|
| accountKey
| int
| It is not necessary to specify accountKey for characters because they have only one wallet (accountKey=1000). However, corporations have seven wallets with accountKey(s) numbered 1000 through 1006. Use /corp/AccountBalance.xml.aspx to determine which accountKey corresponds to each corporate wallet.
|
| fromID
| bigint
| Optional. Used for walking the transactions log backwards to get more entries; see See the description of Journal Walking for the WalletJournal call.
|
| rowCount
| int
| Optional. Used for specifying the amount of rows to return. Default is 1000. Maximum is 2560.
|
[edit] Output XML
<?xml version="1.0" encoding="UTF-8"?>
<eveapi version="2">
<currentTime>2010-01-08 20:31:52</currentTime>
<result>
<rowset name="transactions" key="transactionID" columns="transactionDateTime,transactionID,quantity,typeName,typeID,price,clientID,clientName,stationID,stationName,transactionType,transactionFor">
<row transactionDateTime="2010-02-07 03:34:00" transactionID="1309776438" quantity="1"
typeName="Information Warfare" typeID="20495" price="34101.06"
clientID="1034922339" clientName="Elthana" stationID="60003760"
stationName="Jita IV - Moon 4 - Caldari Navy Assembly Plant"
transactionType="buy" transactionFor="personal" />
<row transactionDateTime="2010-02-05 17:47:00" transactionID="1307711508" quantity="1"
typeName="Wing Command" typeID="11574" price="1169939.97"
clientID="1979235241" clientName="Daeja synn" stationID="60015027"
stationName="Uitra VI - Moon 4 - State War Academy School"
transactionType="buy" transactionFor="personal" />
<row transactionDateTime="2010-02-02 18:28:00" transactionID="1304203159" quantity="2"
typeName="Skirmish Warfare" typeID="3349" price="13012.01"
clientID="275581519" clientName="SPAIDERKA" stationID="60003760"
stationName="Jita IV - Moon 4 - Caldari Navy Assembly Plant"
transactionType="buy" transactionFor="personal" />
<row transactionDateTime="2010-02-02 06:56:00" transactionID="1303713416" quantity="1"
typeName="Skirmish Warfare" typeID="3349" price="13012.01"
clientID="686507146" clientName="Jin Sutai" stationID="60003760"
stationName="Jita IV - Moon 4 - Caldari Navy Assembly Plant"
transactionType="buy" transactionFor="personal" />
<row transactionDateTime="2010-02-02 01:03:00" transactionID="1303450901" quantity="2"
typeName="Skirmish Warfare" typeID="3349" price="13012.01"
clientID="1043005854" clientName="Flash EF" stationID="60003760"
stationName="Jita IV - Moon 4 - Caldari Navy Assembly Plant"
transactionType="buy" transactionFor="personal" />
<row transactionDateTime="2010-01-29 21:27:00" transactionID="1299019978" quantity="6"
typeName="Heavy Missile Launcher II" typeID="2410" price="556001.01"
clientID="838771896" clientName="Sax Man" stationID="60002362"
stationName="Airaken IV - Moon 1 - Lai Dai Corporation Warehouse"
transactionType="buy" transactionFor="personal" />
<row transactionDateTime="2010-01-29 15:45:00" transactionID="1298649939" quantity="1"
typeName="Heavy Missile Launcher II" typeID="2410" price="556001.01"
clientID="1703231064" clientName="Der Suchende" stationID="60004369"
stationName="Ohmahailen V - Moon 7 - Corporate Police Force Assembly Plant"
transactionType="buy" transactionFor="personal" />
</rowset>
</result>
<cachedUntil>2010-01-08 20:46:47</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"
|
| journalTransactionID
| bigint
| Wallet Journal refID. See WalletJournal.
|