provider Fine-tuning GET
/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions @utdk/openai
/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions **NOTE:** This endpoint requires an [admin API key](../admin-api-keys).
Organization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.
- fine_tuned_model_checkpoint path required
- The ID of the fine-tuned model checkpoint to get permissions for.
- string
- project_id query
- The ID of the project to get permissions for.
- string
- after query
- Identifier for the last permission ID from the previous pagination request.
- string
- limit query
- Number of permissions to retrieve.
- integer
- order query
- The order in which to retrieve permissions.
- enum: ascending, descending
Try it
Authentication
Configure credentials for OpenAI API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import openai from '@utdk/openai';
await openai.listfinetuningcheckpointpermissions({
"limit": 10,
"order": "descending"
})