Delete Model Catalog Entry
Endpoint
DELETE /apiops/projects/{projectName}/llm-models/{modelName}/
Authentication
Requires a Personal API Access Token.
Header
Authorization: Bearer YOUR_TOKEN
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer {token} | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectName | string | Yes | Project name |
| modelName | string | Yes | Model catalog entry name, in \{providerCode\}/\{modelId\} form (e.g. openai/gpt-5-mini) |
Query Parameters
None
Response
Success Response (200 OK)
{
"status": "SUCCESS",
"deploymentResult": {
"success": true
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
| status | string | Response status: SUCCESS or FAILURE |
| deploymentResult | object | Result of the delete operation |
| deploymentResult.success | boolean | Whether the operation completed successfully |
Error Response (400 Bad Request)
{
"status": "FAILURE",
"resultMessage": "Model catalog entry (name: openai/gpt-5-mini) was not found!"
}
or (attempting to delete a built-in model)
{
"status": "FAILURE",
"resultMessage": "Built-in models cannot be deleted"
}
Error Response (401 Unauthorized)
{
"status": "FAILURE",
"resultMessage": "Token is not valid!"
}