TransferItem | |
---|---|
Accessibility | Private |
Method | POST |
URI | /Destiny/TransferItem |
Summary[]
Moves items to and from a character and the vault.
Path Parameters[]
Name | Description |
---|
Query String Parameters[]
Name | Description |
---|
JSON POST Parameters[]
Name | Description |
---|---|
A valid non-BungieNet membership type. | |
itemReferenceHash |
The inventoryItemHash for an item. |
itemId |
The instanceId of an equipable item. Should be "0" otherwise. |
stackSize |
How many items to transfer. Should be "1" for equipable items. |
characterId |
The characterId the item is being moved to or from. |
transferToVault |
Move the item to or from the vault; true or false |
Example[]
Request[]
POST https://www.bungie.net/Platform/Destiny/TransferItem
{
"membershipType": 2,
"itemReferenceHash": "2166567782",
"itemId": "6917529050196876642",
"stackSize": 1,
"characterId": "2305843009234425075",
"transferToVault": true
}
Response[]
{
"Response": 0,
"ErrorCode": 1,
"ThrottleSeconds": 0,
"ErrorStatus": "Success",
"Message": "Ok",
"MessageData": {
}
}