PUT
/
api
/
ml
/
v1
/
model-versions
/
tags
Apply Model Version Tags
curl --request PUT \
  --url https://{controlPlaneURL}/api/ml/v1/model-versions/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "model_version_id": "<string>",
  "tags": [
    "<string>"
  ],
  "force": false
}'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
model_version_id
string
required
tags
string[]
required
force
boolean
default:false

Response

Successful Response

The response is of type object.