...
Paste code macro | ||||
---|---|---|---|---|
| ||||
DELETE https://${CloudVendor}.${CountryCode}.machlake.com/lakes/${lake_id}/tags
Content-Type: application/json; charset=utf8
x-api-key: {API Key}
{
"name" : "{name_of_tag}"
} |
Parameters
no parameters
Parameters
Optional | Type | Description | Example |
---|---|---|---|
name | String | tag name | &name=tag1 |
Request Example
Paste code macro | ||||
---|---|---|---|---|
| ||||
DELETE https://aws1.us.machlake.com/lakes/xbacd1234/tags?name=newtag02 Content-Type: application/json; charset=utf8 x-api-key: {API Key} { "name" : "newtag02" } |
Response Example
Paste code macro | ||||
---|---|---|---|---|
| ||||
Status 200 { "status": "success", "data": {} } |
...