| Endpoint | Method | Admin Required |
|---|---|---|
/api/v1/objects/tags | PUT | No |
Sets the tags on the current version of an object in a bucket you own, overwriting any existing tags entirely. Modifies that version's metadata in place - it does not create a new object version, matching the S3-compatible API's PutObjectTagging semantics.
{
"tags": {
"project": "alarik"
}
}
Returns the saved tags:
{
"tags": {
"project": "alarik"
}
}
| Status | Reason |
|---|---|
400 | Missing bucket or key parameter, or more than 10 tags |
404 | Bucket not found (or not owned by you), or object not found |