Delete Invoice
Delete an invoice.
Example
Use the $API->delete()
method to delete invoice #12998.
<?php
/**
* Example of deleting an invoice
*/
header('Content-Type: text/plain');
// Require the library
require '../ChargeOverAPI.php';
require 'config.php';
$API = new ChargeOverAPI($url, $authmode, $username, $password);
// This is invoice ID value
$the_invoice_id = 12998;
// Delete the invoice
$resp = $API->delete(ChargeOverAPI_Object::TYPE_INVOICE, $the_invoice_id);
// Check for errors
if (!$API->isError($resp))
{
print('Invoice was deleted!');
}
else
{
print('The invoice COULD NOT BE DELETED!');
print("\n\n\n\n");
print($API->lastError());
print("\n\n\n\n");
print($API->lastRequest());
print("\n\n\n\n");
print($API->lastResponse());
print("\n\n\n\n");
}