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  
 
add_invoice
Input Variable Input Value Description
cid String value Required The customer ID to associate the invoice with.
from_date String value as date/time. Required The FROM part of the invoice date range.
to_date String value, as date/time. Required The TO part of the invoice date range.

Output Variable URL Encoded Description
added_invoice No Invoice ID that was added.
Example Usage
http://localhost/API/default.aspx?key=your key here&action=add_invoice&cid=demo&from_date=3/1/2014&to_date=3/31/2014
Example Response
XML:
<?xml version="1.0"?>
<response>
    <added_invoice>5</added_invoice>
</response>
JSON:
{
	"response": [
		{
			"added_invoice" : "5"
		}
	]
}
URL DELIMITED:
added_invoice=5