curl --request PUT \
--url https://{controlPlaneURL}/api/ml/v1/prompt-versions/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt_version_id": "<string>",
"tags": [
"<string>"
],
"force": false
}
'{}curl --request PUT \
--url https://{controlPlaneURL}/api/ml/v1/prompt-versions/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"prompt_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 EmptyResponse · object.
Was this page helpful?