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

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

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