Parameters for updating an existing order tracking live notification. Updates the live notification on the user's lock screen and Dynamic Island (iOS).

Platform Support: iOS 16.2+ only. On other platforms, the method will throw an error.

interface UpdateLiveNotificationInput {
    orderId: string;
    status: OrderStatusInfo;
    message: string;
    estimatedTime?: string;
}

Properties

orderId: string

Required: Order identifier matching the one used when starting the live notification.

Required: Updated status information for the order.

message: string

Required: Updated message describing the current order state.

estimatedTime?: string

Optional: Updated estimated time remaining.