Types > OrderCancel
Commerce APITypesOrderCancel
OrderCancel

Description

Topic: Orders

Fields

archive: Boolean

Whether to archive order or not

Example: false


notify: Boolean

Whether to notify customer about order cancellation via email or not

Example: false


reason: OrderCancelReason

The reason why the order was canceled


refund: OrderRefund


Used By

Mutations

ordersCancel

Preview (typescript)

interface OrderCancel {
archive?: boolean
notify?: boolean
reason?: OrderCancelReason | null
refund?: OrderRefund | null
}