GET Premier Conferences

https://pd.{shard}.a.pvp.net/premier/v1/affinities/{affinity}/conferences

Get all Premier conferences for a given affinity/region, including both regular and super conferences.

Headers

URL Parameters

Other Variables

Response

type PremierConferencesResponse = {
    PremierConferences: {
        /** UUID */
        id: string;
        /** Conference identifier, e.g. "EU_DACH", "EU_NORTH" */
        key: string;
        /** Whether this is a super conference */
        isSuper: boolean;
        /** Game server pod identifiers */
        gamePods: string[];
        /** IANA timezone, e.g. "Europe/Berlin" */
        timezone: string;
        /** Parent super conference key (only on non-super conferences) */
        superConference?: string | undefined;
        leaderboardPlayoffQualificationDateTime: string;
        leaderboardPromotionFinalizationDateTime: string;
    }[];
};