APIv2 Char ContractItems XML
From EVEDev
| API Methods - Category Home - API Overview - API Page Index - API Libraries - API Wanted Features |
Contents |
[edit] /char/ContractItems.xml.aspx
[edit] Overview
Lists items that a specified contract contains.
More informations here : http://www.eveonline.com/devblog.asp?a=blog&nbid=2383
[edit] Data Caching
This method is cached according to the Modified Short Cache Style.
[edit] Input Arguments
| Name | Type | Description |
|---|---|---|
| keyID | int | The ID of the Customizable API Key for authentication, found at: https://support.eveonline.com/api. |
| vCode | char(64) | The user defined or CCP generated Verification Code for the Customizable API Key, found at https://support.eveonline.com/api. |
| characterID | int | The ID of the character for the requested data, from Character List. (Only required when use keyID that works with multiple characters) |
| contractID | long | The ID of the contract |
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?> <eveapi version="2"> <currentTime>2011-11-19 16:03:38</currentTime> <result> <rowset name="itemList" key="recordID" columns="recordID,typeID,quantity,rawQuantity,singleton,included"> <row recordID="600515136" typeID="12067" quantity="1" singleton="0" included="1" /> </rowset> </result> <cachedUntil>2021-11-16 15:15:32</cachedUntil> </eveapi>
[edit] Output Rowset Columns
| Name | Type | Description |
|---|---|---|
| recordID | long | A unique key. |
| typeID | int | The type of the item. |
| quantity | long | The actual quantity. |
| rawQuantity | int | This attribute will only show up if the quantity is a negative number in the DB. Negative quantities are in fact codes, -1 indicates that the item is a singleton (non-stackable). If the item happens to be a Blueprint, -1 is an Original and -2 is a Blueprint Copy. |
| singleton | int | 1 if this is a singleton item, 0 if not. |
| included | int | 1 if the contract issuer has submitted this item with the contract, 0 if the isser is asking for this item in the contract. |

