Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
WoW
Talk
English
Views
Read
Edit
History
More
Search
Navigation
Home
Random page
Help using wiki
Editions
for WoW
for WildStar
for Solar2D
Documentation
for WoW
for WildStar
Reference
WoW
⦁ FrameXML
⦁ AddOns
⦁ API
⦁ WoW Lua
WildStar
⦁ AddOns
⦁ API
⦁ WildStar Lua
Engine
Tools
What links here
Related changes
Special pages
Page information
Site
Recent Changes
Editing
WoW:API QueryAuctionItems
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Arguments == :;name :: ''string'' :: A part of the item's name (or the complete name) or "" for no retrenchment. Must be 63 bytes or less. :;minLevel :: ''integer (or nil)'' :: Items below this level won't be returned. Either a number or nil for no restrictions. :;maxLevel :: ''integer (or nil)'' :: Items above this level won't be returned. Either a number or nil for no restrictions. :;page :: ''integer'' :: What page in the auctionhouse this shows up. Note that pages start at 0. :;isUsable :: ''boolean (or nil for false)'' :: Is useable by the player. :;qualityIndex :: ''integer'' :: Can be one of the following values: :::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 :: ''boolean'' :: 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) :;exactMatch :: ''boolean'' :: Should the name be used as an exact match or should it match substrings of the auction items. :;filterData :: ''table'' :: The old invtypeIndex, classIndex, and subclassIndex roled into one. : This is the code that builds the filter value(s) for filterData: local filterData; if categoryIndex and subCategoryIndex and subSubCategoryIndex then filterData = AuctionCategories[categoryIndex].subCategories[subCategoryIndex].subCategories[subSubCategoryIndex].filters; elseif categoryIndex and subCategoryIndex then filterData = AuctionCategories[categoryIndex].subCategories[subCategoryIndex].filters; elseif categoryIndex then filterData = AuctionCategories[categoryIndex].filters; else -- not filtering by category, leave nil for all end : The following commands will return the currently selected category and subcategory: /dump AuctionFrameBrowse.selectedCategoryIndex /dump AuctionFrameBrowse.selectedSubcategoryIndex
Summary:
Please note that all contributions to AddOn Studio are considered to be released under the Creative Commons Attribution-NonCommercial-ShareAlike (see
AddOn Studio Wiki:Copyrights
for details).
Submissions must be written by you, or copied from a public domain or similar free resource (see
AddOn Studio Wiki:Copyrights
for details).
Cancel
Editing help
(opens in new window)