DELETE
/
fine_tuning
/
checkpoints
/
{fine_tuned_model_checkpoint}
/
permissions
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
}

Authorizations

Authorization
string
header
required

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

Path Parameters

fine_tuned_model_checkpoint
string
required

The ID of the fine-tuned model checkpoint to delete a permission for.

Example:

"ft:gpt-4o-mini-2024-07-18:org:weather:B7R9VjQd"

permission_id
string
required

The ID of the fine-tuned model checkpoint permission to delete.

Example:

"cp_zc4Q7MP6XxulcVzj4MZdwsAB"

Response

200 - application/json

OK

The response is of type object.