curl --request DELETE \
--url https://api.openai.com/v1/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"object": "checkpoint.permission",
"deleted": true
}NOTE: This endpoint requires an admin API key.
Organization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.
curl --request DELETE \
--url https://api.openai.com/v1/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"object": "checkpoint.permission",
"deleted": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the fine-tuned model checkpoint to delete a permission for.
"ft:gpt-4o-mini-2024-07-18:org:weather:B7R9VjQd"
The ID of the fine-tuned model checkpoint permission to delete.
"cp_zc4Q7MP6XxulcVzj4MZdwsAB"
OK
The ID of the fine-tuned model checkpoint permission that was deleted.
The object type, which is always "checkpoint.permission".
checkpoint.permission Whether the fine-tuned model checkpoint permission was successfully deleted.
Was this page helpful?