GET Party Player

https://glz-{region}-1.{shard}.a.pvp.net/parties/v1/players/{puuid}

Get the party information for the given player

Headers:

URL Parameters:

Other Variables:

Response:

type PartyPlayerResponse = {
    /** Player UUID */
    Subject: string;
    Version: number;
    /** Party ID */
    CurrentPartyID: string;
    Invites: null;
    Requests: {
        ID: string;
        /** Party ID */
        PartyID: string;
        /** Player UUID */
        RequestedBySubject: string;
        Subjects: string[];
        /** Date in ISO 8601 format */
        CreatedAt: string;
        /** Date in ISO 8601 format */
        RefreshedAt: string;
        ExpiresIn: number;
    }[];
    PlatformInfo: {
        platformType: "PC";
        platformOS: "Windows";
        platformOSVersion: string;
        platformChipset: "Unknown";
    };
};