GET Get Order

https://pd.{shard}.a.pvp.net/store/v1/order/{order id}

Get the status and rewards of a purchase order. The {order id} can be obtained from the POST Create Order endpoint.

Headers

URL Parameters

Other Variables

Response

type GetOrderResponse = {
    /** UUID */
    OrderID: string;
    Status: "ACCEPTED" | "COMPLETE" | "FAILED";
    /** Map of reward category (e.g. "Cards", "Skins", "Buddies", "Bundles") to reward items */
    OrderRewards: {
        [x: string]: {
            /** Item ID */
            RewardID: string;
            Amount: number;
        }[];
    };
};