action bungie_destiny2_get_collectible_node_details { label: "Destiny2.GetCollectibleNodeDetails" description: "Given a Presentation Node that has Collectibles as direct descendants, this will return item details about those descendants in the context of the requesting character." provider: bungie method: GET path: "/Destiny2/{membershipType}/Profile/{destinyMembershipId}/Character/{characterId}/Collectibles/{collectiblePresentationNodeHash}/" encoding: json input: { type: "object" properties: { characterId: { type: "integer" format: "int64" } collectiblePresentationNodeHash: { type: "integer" format: "uint32" } 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" } membershipType: { type: "integer" format: "int32" } } required: ["characterId", "collectiblePresentationNodeHash", "destinyMembershipId", "membershipType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }