POST Create Order

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

Create an in-game purchase order. The OfferID can be obtained from the POST Storefront endpoint.

Headers

URL Parameters

Other Variables

Body

type CreateOrderBody = {
    /** Unique Riot identifier (36 characters, UUID format) */
    XID: string;
    /** The offer to purchase. Available offers can be found from the Storefront endpoint. */
    OfferID: string;
};

Response

type CreateOrderResponse = {
    /** The order UUID. Use with the Get Order endpoint to check order status. */
    OrderID: string;
    Status: "ACCEPTED" | "COMPLETE" | "FAILED";
};