Remove property
DELETE /container/<containerId>/properties/<targetId>/<key>
Description
Remove a property. Returns 204 even if the property did not exist.
Path parameters
| Param | Description |
|---|---|
containerId |
Container Id. |
targetId |
Target Id. |
key |
Property to remove. |
Query parameters
none
Body
none
Return codes
| Error code | Reason |
|---|---|
204 |
Success. |
401 |
Invalid or missing token. |
403 |
Insufficient permissions (required: API+ASSET_MANAGEMENT). |
404 |
Container not found. |
Example
Curl request:
curl \
-X DELETE 'https://api.infrasonar.com/container/123/properties/456/my_prop' \
-H 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'