<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://addonstudio.org/mw1/index.php?action=history&amp;feed=atom&amp;title=WoW%3AAPI_PickupItem</id>
	<title>WoW:API PickupItem - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://addonstudio.org/mw1/index.php?action=history&amp;feed=atom&amp;title=WoW%3AAPI_PickupItem"/>
	<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_PickupItem&amp;action=history"/>
	<updated>2026-06-02T05:49:47Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:API_PickupItem&amp;diff=18472&amp;oldid=prev</id>
		<title>Move page script: Move page script moved page API PickupItem to WoW:API PickupItem without leaving a redirect</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_PickupItem&amp;diff=18472&amp;oldid=prev"/>
		<updated>2023-08-15T04:47:02Z</updated>

		<summary type="html">&lt;p&gt;Move page script moved page &lt;a href=&quot;/wiki/WoW:API_PickupItem&quot; title=&quot;WoW:API PickupItem&quot;&gt;API PickupItem&lt;/a&gt; to &lt;a href=&quot;/wiki/WoW:API_PickupItem&quot; title=&quot;WoW:API PickupItem&quot;&gt;API PickupItem&lt;/a&gt; without leaving a redirect&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 04:47, 15 August 2023&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key addonstu_asmw2:diff::1.12:old-18471:rev-18472 --&gt;
&lt;/table&gt;</summary>
		<author><name>Move page script</name></author>
	</entry>
	<entry>
		<id>https://addonstudio.org/mw1/index.php?title=WoW:API_PickupItem&amp;diff=18471&amp;oldid=prev</id>
		<title>WoWWiki&gt;Toadkiller: New page: {{wowapi}}__NOTOC__ Place the item on the cursor.  PickupItem(itemID or &quot;itemString&quot; or &quot;itemName&quot; or &quot;itemLink&quot;)   == Parameters == === Arguments === :(itemId or &quot;itemString&quot; or &quot;item...</title>
		<link rel="alternate" type="text/html" href="https://addonstudio.org/mw1/index.php?title=WoW:API_PickupItem&amp;diff=18471&amp;oldid=prev"/>
		<updated>2008-11-09T17:27:40Z</updated>

		<summary type="html">&lt;p&gt;New page: {{wowapi}}__NOTOC__ Place the item on the cursor.  PickupItem(itemID or &amp;quot;itemString&amp;quot; or &amp;quot;itemName&amp;quot; or &amp;quot;itemLink&amp;quot;)   == Parameters == === Arguments === :(itemId or &amp;quot;&lt;a href=&quot;/wiki/WoW:ItemString&quot; title=&quot;WoW:ItemString&quot;&gt;itemString&lt;/a&gt;&amp;quot; or &amp;quot;item...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{wowapi}}__NOTOC__&lt;br /&gt;
Place the item on the cursor.&lt;br /&gt;
 PickupItem(itemID or &amp;quot;itemString&amp;quot; or &amp;quot;itemName&amp;quot; or &amp;quot;itemLink&amp;quot;) &lt;br /&gt;
&lt;br /&gt;
== Parameters ==&lt;br /&gt;
=== Arguments ===&lt;br /&gt;
:(itemId or &amp;quot;[[itemString]]&amp;quot; or &amp;quot;itemName&amp;quot; or &amp;quot;[[itemLink]]&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
:;itemId : Integer - The numeric ID of the item. ie. 12345&lt;br /&gt;
:;[[itemString]] : String - The full item ID in string format, e.g. &amp;quot;item:12345:0:0:0:0:0:0:0&amp;quot;.&lt;br /&gt;
:::Also supports partial [[itemString]]s, by filling up any missing &amp;quot;:x&amp;quot; value with &amp;quot;:0&amp;quot;, e.g. &amp;quot;item:12345:0:0:0&amp;quot;&lt;br /&gt;
:;itemName : String - The Name of the Item, ex: &amp;quot;Hearthstone&amp;quot;&lt;br /&gt;
:::The item must have been equiped, in your bags or in your bank once in this session for this to work.&lt;br /&gt;
:;[[itemLink]] : String - The [[itemLink]], when Shift-Clicking items.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
 PickupItem(6948)&lt;br /&gt;
 PickupItem(&amp;quot;item:6948&amp;quot;)&lt;br /&gt;
 PickupItem(&amp;quot;Hearthstone&amp;quot;)&lt;br /&gt;
 PickupItem(GetContainerItemLink(0, 1))&lt;br /&gt;
&lt;br /&gt;
====Result====&lt;br /&gt;
: Picks up the Hearthstone.  4th one picks up the item in backpack slot 1&lt;br /&gt;
&lt;br /&gt;
== Common usage ==&lt;br /&gt;
&lt;br /&gt;
PickupItem(link)&lt;/div&gt;</summary>
		<author><name>WoWWiki&gt;Toadkiller</name></author>
	</entry>
</feed>