WoW:API QueryAuctionItems: Difference between revisions

getall is working now...
(Note that getAll param doesn't actually do anything yet.)
(getall is working now...)
Line 1: Line 1:
{{wowapi}}
{{wowapi}}


Will return information about items in the auction house.  There must be a delay of about 3 second between queries.  Use [[API CanSendAuctionQuery|CanSendAuctionQuery]]() to determine if a query can be done.
Will return information about items in the auction house.  There must be a delay of about 0.3 second between regular queries and 15 minutes between getall queries.  Use [[API CanSendAuctionQuery|CanSendAuctionQuery]]() to determine if a query can be done.


  QueryAuctionItems("name", "minLevel", "maxLevel",  
  QueryAuctionItems("name", minLevel, maxLevel,  
   invTypeIndex, classIndex, subclassIndex,  
   invTypeIndex, classIndex, subclassIndex,  
   page, isUsable, qualityIndex, getAll
   page, isUsable, qualityIndex, getAll
Line 9: Line 9:


== Arguments ==  
== Arguments ==  
:(string type, string type, string type, index value, )
:(string type, integer type, integer type, integer type, integer type, integer type, integer type, integer type, integer type, boolean type)


:;name : A part of the item's name (or the complete name) or "" for no retrenchment.
:;name : A part of the item's name (or the complete name) or "" for no retrenchment.
:;minLevel : Items below this level won't be returned. Either a number or "" for no restrictions.
:;minLevel : Items below this level won't be returned. Either a number or nil for no restrictions.
:;maxLevel : Items above this level won't be returned. Either a number or "" for no restrictions.
:;maxLevel : Items above this level won't be returned. Either a number or nil for no restrictions.
:;invtypeIndex : Character's slotposition in which the item can be placed in. Can be one of the following values:
:;invtypeIndex : Character's slotposition in which the item can be placed in. Can be one of the following values
:::;INVTYPE_HEAD : Head slot
:::;1 -  Head slot (INVTYPE_HEAD)
:::;INVTYPE_NECK : Neck slot
:::;2 - Neck slot (INVTYPE_NECK)
:::;INVTYPE_SHOULDER : Shoulder slot
:::;3 - Shoulder slot (INVTYPE_SHOULDER)
:::;INVTYPE_BODY : Body slot
:::;4 - Shirt slot (INVTYPE_BODY)
:::;INVTYPE_CHEST : Chest slot
:::;5 - Chest slot (INVTYPE_CHEST)
:::;INVTYPE_WAIST : Waist slot
:::;6 - Waist slot (INVTYPE_WAIST)
:::;INVTYPE_LEGS : Leg slot
:::;7 - Leg slot (INVTYPE_LEGS)
:::;INVTYPE_FEET : Feet slot
:::;8 - Feet slot (INVTYPE_FEET)
:::;INVTYPE_WRIST : Wrist slot
:::;9 - Wrist slot (INVTYPE_WRIST)
:::;INVTYPE_HAND : Hand slot
:::;10 - Hand slot (INVTYPE_HAND)
:::;INVTYPE_FINGER : Finger slot
:::;11 - Finger slot (INVTYPE_FINGER)
:::;INVTYPE_TRINKET : Trinket slot
:::;12 - Trinket slot (INVTYPE_TRINKET)
:::;INVTYPE_CLOAK : Cloak slot
:::;13 - Back slot (INVTYPE_CLOAK)
:::;INVTYPE_HOLDABLE : unknown
:::;14 - Weapon offhand slot (INVTYPE_HOLDABLE)
:::;INVTYPE_WEAPONMAINHAND : Weapon mainhand slot
:::;15 - Weapon mainhand slot (INVTYPE_WEAPONMAINHAND)
:::;INVTYPE_ROBE : Robe slot
:::;16 - Robe slot (INVTYPE_ROBE)
:::;INVTYPE_TABARD : Tabard slot
:::;17 - Tabard slot (INVTYPE_TABARD)
:::;INVTYPE_BAG : Container slot
:::;18 - Container slot (INVTYPE_BAG)
:::;INVTYPE_2HWEAPON : 2handed weapon (takes two slots)
:::;19 - 2handed weapon (takes two slots) (INVTYPE_2HWEAPON)
:::;INVTYPE_RANGED : Ranged weapon slot
:::;20 - Ranged weapon slot (INVTYPE_RANGED)
:::;INVTYPE_SHIELD : Shield slot
:::;21 - Shield slot (INVTYPE_SHIELD)
:::;INVTYPE_WEAPON : Both weapon slots
:::;22 - Both weapon slots (INVTYPE_WEAPON)
:::;nil : no restrictions
:::;0 - no restrictions
:;classIndex : Items not in this class won't be returned. Index corresponds to the index returned by [[API GetAuctionItemClasses|GetAuctionItemClasses]]() or nil for no restrictions.
:;classIndex : Returns only item in this class. Integer corresponds to the row number of the table returned by [[API GetAuctionItemClasses|GetAuctionItemClasses]]() or 0 for no restrictions.
:;subclassIndex : Items not in this subclass won't be returned. Index corresponds to the index used in [[API GetAuctionItemSubClasses|GetAuctionItemSubClasses]](index) or nil for no restrictions.
:;subclassIndex : Returns only items in this subclass. Integer corresponds to the row number of the table returned by [[API GetAuctionItemSubClasses|GetAuctionItemSubClasses]](index) or 0 for no restrictions.
:;page : What page in the auctionhouse this shows up
:;page : What page in the auctionhouse this shows up. Note that pages start at 0.
:;isUsable : Is useable by the player (nil = no restrictions)
:;isUsable : Is useable by the player (1 = true, 0 = no restrictions)
:;qualityIndex : The items' quality (nil = no restrictions)
:;qualityIndex : Can be one of the following values
:;getAll : Download the ENTIRE auction house as one single page. Only allowed when [[API CanSendAuctionQuery|CanSendAuctionQuery]]() returns true as its second return (~every 15 minutes). May disconnect people with low bandwidth. Also see notes on client-to-server traffic in [[API GetAuctionItemInfo|GetAuctionItemInfo]]() (Added in 2.3) While this has been 'added', it is marked as [http://forums.worldofwarcraft.com/thread.html?topicId=879058320&sid=1 **DISABLED UNTIL A FUTURE PATCH** ] and does appear to do nothing.
:::;0 - No restriction
:::;1 - Common Quality (white) or better
:::;2 - Uncommon Quality (green) or better
:::;3 - Rare Quality (blue) or better
:::;4 - Epic Quality (purple) or better
 
:;getAll : Download the ENTIRE auction house as one single page. Only allowed when [[API CanSendAuctionQuery|CanSendAuctionQuery]]() returns true as its second return (~every 15 minutes). May disconnect people with low bandwidth. Also see notes on client-to-server traffic in [[API GetAuctionItemInfo|GetAuctionItemInfo]]() (Added in 2.3, though initially disabled. Appears to be enabled as of 2.4)




== Example ==
== Example ==
  QueryAuctionItems("",10, 19, "", 2, nil, 0, nil, 3)
  QueryAuctionItems("", 10, 19, 0, 2, 0, 0, 0, 3, 0)


=== Result ===
=== Result ===


:Finds twink gear! (blue armor between lvl 10 and 19)
:Finds twink gear! (blue armor between lvl 10 and 19)
:still unsure how to use the forth argument
:
:also, the First page is page (0) zero
:also, the First page is page (0) zero


== Notes ==
== Notes ==
:;invTypeIndex does not appear to work for values past 14.
:;If any of the entered arguments is of the wrong type, the search assumes a nil value.
Anonymous user