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_company
To prevent loss of data, only one company may deleted at a time. No wildcards are accepted.

Input Variable Input Value Description
id Integer value Company ID to delete. You can alternatively supply the company name to delete.
name String value Company name to delete. You can alternatively supply the company ID to delete.

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