WoW:API GetAuctionItemLink: Difference between revisions
Jump to navigation
Jump to search
(upgraded deprecated template) |
m (Move page script moved page API GetAuctionItemLink to API GetAuctionItemLink without leaving a redirect) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{wowapi}} | {{wowapi}} __NOTOC__ | ||
Retrieves | Retrieves the [[itemLink]] of one item in the current retrieved list of items from the Auction House. | ||
"itemLink" = GetAuctionItemLink("type", index) | |||
== Arguments == | |||
:("type", index) | |||
:( | :;"type" : String - One of the following: | ||
:;type : One of the following: | |||
:::;"list" : An item up for auction, the "Browse" tab in the dialog. | :::;"list" : An item up for auction, the "Browse" tab in the dialog. | ||
:::;"bidder" : An item the player has bid on, the "Bids" tab in the dialog. | :::;"bidder" : An item the player has bid on, the "Bids" tab in the dialog. | ||
:::;"owner" : An item the player has up for auction, the "Auctions" tab in the dialog. | :::;"owner" : An item the player has up for auction, the "Auctions" tab in the dialog. | ||
:;index : Number - The index of the item in the list to retrieve info from (normally 1-50, inclusive) | |||
== Returns == | |||
:;"itemLink" : [[itemLink]] - The itemLink for the specified item or | |||
:: nil, if type and/or index is invalid. | |||
:; | |||
Latest revision as of 04:45, 15 August 2023
← WoW API < GetAuctionItemLink
Retrieves the itemLink of one item in the current retrieved list of items from the Auction House.
"itemLink" = GetAuctionItemLink("type", index)
Arguments[edit]
- ("type", index)
- "type"
- String - One of the following:
- "list"
- An item up for auction, the "Browse" tab in the dialog.
- "bidder"
- An item the player has bid on, the "Bids" tab in the dialog.
- "owner"
- An item the player has up for auction, the "Auctions" tab in the dialog.
- index
- Number - The index of the item in the list to retrieve info from (normally 1-50, inclusive)
Returns[edit]
- "itemLink"
- itemLink - The itemLink for the specified item or
- nil, if type and/or index is invalid.