GET Pre-Game Loadouts

https://glz-{region}-1.{shard}.a.pvp.net/pregame/v1/matches/{pre-game match id}/loadouts

Get Pre-Game loadout data

Headers:

URL Parameters:

Other Variables:

Response:

type Pre-GameLoadoutsResponse = {
    Loadouts: {
        /** Player UUID */
        Subject: string;
        Sprays: {
            SpraySelections: {
                /** UUID */
                SocketID: string;
                /** UUID */
                SprayID: string;
                /** UUID */
                LevelID: string;
            }[];
        };
        Expressions: {
            AESSelections: {
                /** UUID */
                SocketID: string;
                /** UUID */
                AssetID: string;
                /** UUID */
                TypeID: string;
            }[];
        };
        Items: {
            [x: string]: {
                /** Item ID */
                ID: string;
                /** Item Type ID */
                TypeID: string;
                Sockets: {
                    [x: string]: {
                        /** UUID */
                        ID: string;
                        Item: {
                            /** Item ID */
                            ID: string;
                            /** Item Type ID */
                            TypeID: string;
                        };
                    };
                };
            };
        };
    }[];
    LoadoutsValid: boolean;
};