List checkpoint permissions

GEThttps:/api.openai.com/v1/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions

NOTE: This endpoint requires an .

Organization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.

Path parameters

  • fine_tuned_model_checkpoint
    string
    Required
    The ID of the fine-tuned model checkpoint to get permissions for.

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
    Defaults: 10
    Number of permissions to retrieve.
  • order
    string
    Defaults: descending
    The order in which to retrieve permissions.

Response

A list of fine-tuned model checkpoint permission objects for a fine-tuned model checkpoint.

Example request
1
curl https://api.openai.com/v1/fine_tuning/checkpoints/ft:gpt-4o-mini-2024-07-18:org:weather:B7R9VjQd/permissions \
2
-H "Authorization: Bearer $OPENAI_API_KEY"
Example response
1
{
2
"object": "list",
3
"data": [
4
{
5
"object": "checkpoint.permission",
6
"id": "cp_zc4Q7MP6XxulcVzj4MZdwsAB",
7
"created_at": 1721764867,
8
"project_id": "proj_abGMw1llN8IrBb6SvvY5A1iH"
9
},
10
{
11
"object": "checkpoint.permission",
12
"id": "cp_enQCFmOTGj3syEpYVhBRLTSy",
13
"created_at": 1721764800,
14
"project_id": "proj_iqGMw1llN8IrBb6SvvY5A1oF"
15
},
16
],
17
"first_id": "cp_zc4Q7MP6XxulcVzj4MZdwsAB",
18
"last_id": "cp_enQCFmOTGj3syEpYVhBRLTSy",
19
"has_more": false
20
}
Built with