Interface APICharacterSoulbinds

Character Soulbinds

/profile/wow/character/{realmSlug}/{characterName}/soulbinds

interface APICharacterSoulbinds {
    _links: linksStruct;
    character: characterRef;
    chosen_covenant: refStruct;
    renown_level: number;
    soulbinds: {
        soulbind: refStruct;
        traits: (characterSoulbindTrait | characterSoulbindConduitSocket)[];
    }[];
}

Properties

_links: linksStruct
character: characterRef
chosen_covenant: refStruct
renown_level: number
soulbinds: {
    soulbind: refStruct;
    traits: (characterSoulbindTrait | characterSoulbindConduitSocket)[];
}[]