メインコンテンツへスキップ
DELETE
/
v1
/
preview
/
models
/
{model_id}
/
checkpoints
モデルのチェックポイントを削除
curl --request DELETE \
  --url https://api.example.com/v1/preview/models/{model_id}/checkpoints \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "steps": [
    123
  ]
}
'
{
  "deleted_count": 123,
  "not_found_steps": [
    123
  ]
}

承認

Authorization
string
header
必須

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

パスパラメータ

model_id
string
必須

ボディ

application/json

チェックポイントを削除するためのスキーマです。

steps
integer[]
必須

レスポンス

成功応答

チェックポイント削除レスポンス用のスキーマです。

deleted_count
integer
必須
not_found_steps
integer[]
必須