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

Input Variable Input Value Description
id Integer value Asset field ID to delete.

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