DELETE
/
models
/
custom
/
{model_id}
Delete Custom Model
import requests

url = "https://api.opper.ai/v2/models/custom/{model_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.delete(url, headers=headers)

print(response.json())
This response does not have an example.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

model_id
string<uuid>
required

The ID of the custom language model to delete

Response

204

Successful Response