Interface CreateFulfillmentData

Data for creating a fulfillment

interface CreateFulfillmentData {
    line_items: {
        id: number;
        quantity: number;
    }[];
    notify_customer?: boolean;
    tracking_company?: string;
    tracking_number?: string;
}

Properties

line_items: {
    id: number;
    quantity: number;
}[]

Line items to fulfill

Type declaration

  • id: number
  • quantity: number
notify_customer?: boolean

Whether to notify customer

tracking_company?: string

Tracking company

tracking_number?: string

Tracking number