Detailed information about the completed order.

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

Properties

id: string

The unique identifier for the order.

Information about the shopping cart at checkout completion.

email?: string

The customer's email address (if provided).

phone?: string

The customer's phone number (if provided).

billingAddress?: ShopifyAddress

The billing address for the order (if available).

deliveries?: ShopifyDeliveryInfo[]

List of delivery information for the order.

paymentMethods?: ShopifyPaymentMethod[]

List of payment methods used for the order.