Click or drag to resize

PostVoid

This topic describes the ShipExec Server PostVoid Rule

A business rule hook that fires after the Void event.

Sample PostVoid Rule
C#
public void PostVoid(Package package, SerializableDictionary userParams)
{
    //Example of using post void to update a shipment's status in a history database using a custom method

    var orderId = package.ShipperReference;
    VoidHistoryDb(orderId);
}
See Also