Bungienetplatform Wiki
Advertisement
EquipItem
Accessibility Private
Method POST
URI /Destiny/EquipItem

Summary[]

Equips an item from a character's inventory. The endpoint will fail if the character is logged in and doing an activity.

Path Parameters[]

Name Description

Query String Parameters[]

Name Description

membershipType

A valid non-BungieNet membership type.

characterId

The character that the item is attached to.

itemId

The instanceId of an equipable item.

JSON POST Parameters[]

Name Description

Example[]

Request[]

POST https://www.bungie.net/Platform/Destiny/EquipItem

{
    "membershipType": 2,
    "itemId": "6917529044280138738",
    "characterId": "2305843009234425075"
}

Response[]

{
    "Response": 0,
    "ErrorCode": 1,
    "ThrottleSeconds": 0,
    "ErrorStatus": "Success",
    "Message": "Ok",
    "MessageData": {

    }
}

References[]

Advertisement