GET
/
fine_tuning
/
checkpoints
/
{fine_tuned_model_checkpoint}
/
permissions
curl --request GET \
  --url https://api.openai.com/v1/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": 123,
      "project_id": "<string>",
      "object": "checkpoint.permission"
    }
  ],
  "object": "list",
  "first_id": "<string>",
  "last_id": "<string>",
  "has_more": 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 get permissions for.

Example:

"ft-AF1WoRqd3aJAHsqc9NY7iL8F"

Query Parameters

project_id
string

The ID of the project to get permissions for.

after
string

Identifier for the last permission ID from the previous pagination request.

limit
integer
default:10

Number of permissions to retrieve.

order
enum<string>
default:descending

The order in which to retrieve permissions.

Available options:
ascending,
descending

Response

200 - application/json

OK

The response is of type object.