Delete Method
Deletes the record from QuickBooks.
Syntax
public void delete();
Remarks
Delete causes the object to be deleted in QuickBooks. After this method is called, the values of all fields will be reset to their defaults.
The object deleted in QuickBooks is the one specified by RefId. This read-only property may be assigned either by calling Get or by assigning the value of QBResponseAggregate.
A typical example:
Customer.GetByName(
"John Smith"
) '
this
will assign the RefId
Customer.Delete()
Use this method with caution, as there is no way to recover deleted objects.