Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
Successful Response
The response is of type object.
curl --request PUT \
--url https://{controlPlaneURL}/api/ml/v1/artifact-versions/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"artifact_version_id": "<string>",
"tags": [
"<string>"
],
"force": false
}'{}curl --request PUT \
--url https://{controlPlaneURL}/api/ml/v1/artifact-versions/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"artifact_version_id": "<string>",
"tags": [
"<string>"
],
"force": false
}'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
The response is of type object.
Was this page helpful?