Skip to main content
POST
/
objs
/
{object_id}
/
versions
/
{digest}
/
tags
/
remove
Obj Remove Tags
curl --request POST \
  --url https://api.example.com/objs/{object_id}/versions/{digest}/tags/remove \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_id": "<string>",
  "tags": [
    "<string>"
  ]
}
'
{}

Path Parameters

object_id
string
required
digest
string
required

Body

application/json

Request body for adding/removing tags (object_id and digest come from path).

project_id
string
required
Example:

"entity/project"

tags
string[]
required
Example:
["production", "reviewed"]

Response

Successful Response

The response is of type ObjRemoveTagsRes · object.