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

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

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