Detailed information about the completed order.

interface ShopifyOrderDetails {
    billingAddress?: ShopifyAddress;
    cart: ShopifyCartInfo;
    deliveries?: ShopifyDeliveryInfo[];
    email?: string;
    id: string;
    paymentMethods?: ShopifyPaymentMethod[];
    phone?: string;
}

Properties

billingAddress?: ShopifyAddress

The billing address for the order (if available).

Information about the shopping cart at checkout completion.

deliveries?: ShopifyDeliveryInfo[]

List of delivery information for the order.

email?: string

The customer's email address (if provided).

id: string

The unique identifier for the order.

paymentMethods?: ShopifyPaymentMethod[]

List of payment methods used for the order.

phone?: string

The customer's phone number (if provided).