curl --request POST \
--url https://{controlPlaneURL}/api/ml/v1/artifact-versions/mark-stage-failure \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>"
}
'{}Mark a staged artifact version as failed.
curl --request POST \
--url https://{controlPlaneURL}/api/ml/v1/artifact-versions/mark-stage-failure \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>"
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the staged artifact version to mark as failed
Empty response indicating successful failure marking
The response is of type EmptyResponse · object.
Was this page helpful?