GET Agent Storefront

https://pd.{shard}.a.pvp.net/store/v1/storefronts/agent

Get the agent store, listing all purchasable agents with their available offers and costs.

Headers

URL Parameters

Other Variables

Response

type AgentStorefrontResponse = {
    AgentStore: {
        AgentStoreOffers: {
            /** UUID */
            AgentID: string;
            StoreOffers: {
                /** UUID */
                OfferID: string;
                IsDirectPurchase: boolean;
                /** ISO 8601 datetime */
                StartDate: string;
                /** Map of currency ID to price */
                Cost: {
                    [x: string]: number;
                };
                Rewards: {
                    /** UUID */
                    ItemTypeID: string;
                    /** UUID */
                    ItemID: string;
                    Quantity: number;
                }[];
            }[];
        }[];
        /** UUID */
        CurrentFeaturedAgent: string;
        /** UUID */
        NextFeaturedAgent: string;
    };
};