Passer au contenu principal
POST
/
objs
/
{object_id}
/
versions
/
{digest}
/
tags
/
remove
Obj Supprimer des tags
curl --request POST \
  --url https://api.example.com/objs/{object_id}/versions/{digest}/tags/remove \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "tags": [
    "<string>"
  ]
}
'
{}

Autorisations

Authorization
string
header
requis

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Paramètres de chemin

object_id
string
requis
digest
string
requis

Corps

application/json

corps de la requête pour ajouter ou supprimer des tags (object_id et empreinte proviennent du chemin).

project_id
string
requis
Exemple:

"entity/project"

tags
string[]
requis
Exemple:
["production", "reviewed"]

Réponse

Réponse réussie

The response is of type ObjRemoveTagsRes · object.