action bungie_user_get_membership_data_by_id { label: "User.GetMembershipDataById" description: "Returns a list of accounts associated with the supplied membership ID and membership type. This will include all linked accounts (even when hidden) if supplied credentials permit it." provider: bungie method: GET path: "/User/GetMembershipsById/{membershipId}/{membershipType}/" encoding: json input: { type: "object" properties: { membershipId: { type: "integer" format: "int64" } membershipType: { type: "integer" format: "int32" } } required: ["membershipId", "membershipType"] additionalProperties: false } output: { type: "object" additionalProperties: true } }