Delete model
Authorization
SymetryMLAuth HMAC-SHA256 signature-based authentication: requests are signed with
your secret key and sent with the Customer-ID, Sym-date,
Authorization, Content-MD5 and sym-version headers.
See SymetryML REST API Security
for the signature algorithm and a complete example.
In: header
Path Parameters
User/Customer identifier
Project identifier
Model identifier
Response Body
application/json
application/json
curl -X DELETE "https://example.com/c1/projects/nbra_prj_iris/models/nbra_prj_iris_build_1"{ "statusCode": 200, "statusString": "deleted model name [lda1] project with name[demo] from Customer[c1] store", "values": {}}{ "statusCode": 400, "statusString": "Customer[c1] does not have project with id[nonexistent_prj_xyz], ", "values": {}}Get model code GET
Generate executable code for a trained model. Only `java` and `sql` are supported (`CoreConstants.MODEL_LANGUAGE_JAVA`/`_SQL`); any other value throws and surfaces as a `500`. Not every model type supports both languages. `language` is **required** — there is no default; an omitted or empty value is a `400`. The response body is the standard `JSONResponse` envelope (`values.string`) — but the `Content-Type` response header is `text/plain` on every status code (200/400/500), not `application/json`. The body content itself is still JSON text; only the header is misleading.
Get model information GET
Next Page