Untitled Page
API Overview
Example
Customers  
Companies  
Technicians  
Technician Groups  
Tickets  
Ticket History  
Ticket Attachments  
Billing Line Items  
Billing Invoices  
Time Tracking  
Knowledge Base Articles  
Scheduling  
Asset Managements  
 
delete_invoice
To prevent loss of data, only one invoice may deleted at a time. No wildcards are accepted.

Input Variable Input Value Description
id Integer value Invoice ID to delete.

Output Variable URL Encoded Description
deleted_invoice No Invoice ID that was deleted.
Example Usage
http://localhost/API/default.aspx?key=your key here&action=delete_invoice&id=5
Example Response
XML:
<?xml version="1.0"?>
<response>
    <deleted_invoice>5</deleted_invoice>
</response>
JSON:
{
	"response": [
		{
			"deleted_invoice" : "5"
		}
	]
}
URL DELIMITED:
deleted_invoice=5