/api/asset/property [DELETE]
Usage
Removes a property from an asset.
Details
| Detail | Value |
|---|---|
| Group | Asset |
| From Server Version | 0.9.0 |
| Permission | Admin |
| Methods | DELETE |
Parameters
| Parameter | Notes | Meaning |
|---|---|---|
| id | Integer [Required] | The ID of the asset |
| property | Integer [Required] | The ID of the property |
| format | String (xml) | Either 'xml' or 'json' |
Examples
Call
[POST] http://ardiserver.com/api/asset/property?id=925&property=3&node=address&value=10+Somewhere+Street
Success (XML)
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <response> <success>Property Saved</success> </response>
Success (JSON)
{
"success": ["Property Saved"]
}