Delete Model
Deletes a specific model.
Endpoint
DELETE /api/models/{id}
Parameters
Parameter
Type
Required
Description
id
string
Yes
The unique identifier of the model to be deleted.
Request Example
curl -X DELETE "https://api.deepmode.ai/api/models/f7e5d1c3a2f91e3d5c6b8" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_SECRET_API_KEY"
Response
Upon successful deletion, the API returns the following response:
{"message": "Deleted model successfully"}
Last updated