SymetryML Documentation
Models

Delete EVT wrapper

Removes a previously-created EVT wrapper from a model, so its `predict` responses go back to just the raw score. Synchronous, no request body.

DELETE
/{user}/projects/{project}/{model}/evtwrapper

Removes a previously-created EVT wrapper from a model, so its predict responses go back to just the raw score. Synchronous, no request body.

Authorization

SymetryMLAuth
AuthorizationBearer <token>

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*string

User/Customer identifier

project*string

Project identifier

model*string

Model identifier

Response Body

application/json

application/json

curl -X DELETE "https://example.com/c1/projects/nbra_prj_iris/nbra_prj_iris_build_1/evtwrapper"
{  "statusCode": 200,  "statusString": "EVT Wrapper deleted for model [zmodel]",  "values": {}}
{  "statusCode": 400,  "statusString": "Cannot find project [nonexistent_prj_xyz] for user:[c1]",  "values": {}}