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
]
}Delete specific checkpoints for a model.
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
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Schema for deleting checkpoints.
Was this page helpful?