action bungie_user_get_membership_from_hard_linked_credential { label: "User.GetMembershipFromHardLinkedCredential" description: "Gets any hard linked membership given a credential. Only works for credentials that are public (just SteamID64 right now). Cross Save aware." provider: bungie method: GET path: "/User/GetMembershipFromHardLinkedCredential/{crType}/{credential}/" encoding: json input: { type: "object" properties: { crType: { type: "integer" format: "uint8" } credential: { type: "string" } } required: ["crType", "credential"] additionalProperties: false } output: { type: "object" additionalProperties: true } }