...
Paste code macro | ||||
---|---|---|---|---|
| ||||
POST https://${CloudVendor}.${CountryCode}.machlake.com/v1/lakes/${lake_id}/tags
{
"tag" : [["{tag_name}", {additional value 1}, "{additional value 2}"], [ second tag values ], ...]
} |
...
Request Example
Paste code macro | ||||
---|---|---|---|---|
| ||||
POST https://aws1.us.machlake.com/v1/lakes/xbacd1234/tags
{
"tag" : [["newtag01"], ["newtag02"]]
} |
...
Paste code macro | ||||
---|---|---|---|---|
| ||||
Status 200 { "success": true, "statusreason" : "create tag success", "data" : { "success_count": 2, "tag": [ {"name": "newtag01"}, {"name": "newtag02"} ] } } |
...