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_group
To prevent loss of data, only one group may deleted at a time, and the technician ID must be a valid technician ID. No wildcards are accepted.

Input Variable Input Value Description
id Integer value Group ID to delete. You can alternatively use the name variable.
name String value Group name to delete. You can alternatively use the id variable.

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