**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.

DELETE /fine_tuning/checkpoints/{permission_id}/permissions

Path parameters

  • permission_id string Required

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

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string Required

      The ID of the fine-tuned model checkpoint permission that was deleted.

    • object string Required

      The object type, which is always "checkpoint.permission".

      Value is checkpoint.permission.

    • deleted boolean Required

      Whether the fine-tuned model checkpoint permission was successfully deleted.

DELETE /fine_tuning/checkpoints/{permission_id}/permissions
curl \
 --request DELETE 'https://api.openai.com/v1/fine_tuning/checkpoints/cp_zc4Q7MP6XxulcVzj4MZdwsAB/permissions' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "string",
  "object": "checkpoint.permission",
  "deleted": true
}