Delete tags

delete

/serviceapi/entityModel/uds/tags

Delete the Tags matching the given key and value.

The key parameter is required, Oracle Management Cloud does not allow to delete system-generated tags.

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

204 Response

Success - tag(s) deleted
Back to Top

Examples

Delete the location loc=bos

curl -u ${OMC_USERNAME}:${PASSWORD} -X DELETE "https://serverurl/serviceapi/entityModel/uds/tags?key=loc&value=bos"

Delete all tags with key=loc

curl -u ${OMC_USERNAME}:${PASSWORD} -X DELETE "https://serverurl/serviceapi/entityModel/uds/tags?key=loc"
Back to Top