action bungie_destiny2_get_item { label: "Destiny2.GetItem" description: "Retrieve the details of an instanced Destiny Item. An instanced Destiny item is one with an ItemInstanceId. Non-instanced items, such as materials, have no useful instance-specific details and thus are not queryable here." provider: bungie method: GET path: "/Destiny2/{membershipType}/Profile/{destinyMembershipId}/Item/{itemInstanceId}/" encoding: json input: { type: "object" properties: { components: { type: "array" items: { type: "integer" format: "int32" description: "Represents the possible components that can be returned from Destiny \"Get\" calls such as GetProfile, GetCharacter, GetVendor etc... \nWhen making one of these requests, you will pass one or more of these components as a comma separated list in the \"?components=\" querystring parameter. For instance, if you want baseline Profile data, Character Data, and character progressions, you would pass \"?components=Profiles,Characters,CharacterProgressions\" You may use either the numerical or string values." } } destinyMembershipId: { type: "integer" format: "int64" } itemInstanceId: { type: "integer" format: "int64" } membershipType: { type: "integer" format: "int32" } } required: ["destinyMembershipId", "itemInstanceId", "membershipType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }