API Reference
Log In
API Reference

Update a version

This endpoint updates a model’s version metadata.

It can also activate a model's version to publish it in the Model Library.

It can also update a version’s inputs and outputs.

Except for tags, the metadata is stored in model versions. It can update a version’s inputValidationSchema, timeout, requirement, inputs, outputs, statistics, longDescription, processing, technicalDetails, versionHistory, and performanceSummary. To update other parameters create a new version.

❗️

PATCH routes overwrite existing attributes. To avoid this, call the GET route to find existing values and add them to your PATCH request.

🚧

Step 1 of the Model Deployment is required to run this route.

📘

The version, isActive, isAvailable, sourceType, createdBy, imagePrefix, repositoryName and date parameters cannot be manually updated.

📘

Model versions can be updated during and after the deployment.

Activate a model's version

When at least one version is active the whole model becomes active and available in the Model Library.

PATCH /api/models/xx542963xx/versions/0.0.27 HTTP/1.1 Host: trial.app.modzy.com Content-Type: application/json Authorization: ApiKey apikey.modzy Content-Length: 23 { "status":"active" }

👍

Deployed models are set with 0 minimum and 1 maximum engine. You can update engines to match any requirements.

🚧

Requirements

All the previous steps of the Model Deployment are required to run this route.

👍

Roles

Platform Administrators and Data Scientists can access this route.

🚧

A Data Scientist can only edit his own models.

Path Params
string
required

A model identifier provided by Modzy. It contains 10 random alphanumeric characters.

string
required

The model’s version number. It follows the semantic versioning format.

Body Params
string

A JSON schema that validates if the model can run the inputs provided.

timeout
object

An object that contains the version’s timeout parameters.

requirement
object

An object that contains the version’s memory and hardware parameters.

inputs
array of objects

An array that contains the version’s input objects.

inputs
outputs
array of objects

An array that contains the version’s output objects.

outputs
statistics
array of objects

An array that contains the version’s performance metrics.

statistics
string

The version’s details such as what it does, how it works, and what to expect from the results. It’s featured in the Model Details page. It supports content in Markdown to include rich text, links, images, etc.

string

The version’s technical details such as how the model was designed, developed, and trained. It’s featured in the Model Details page. It supports content in Markdown format to include rich text, links, images, etc.

string

Created with data file used to test the model, it shows users how to format API requests to run the model. Together with the sampleOutput, this sample is featured in the Model Details page in JSON format.

string

Created from the model test results, it shows users how results are returned. Together with the sampleInput, this sample is featured in the Model Details page in JSON format.

string

The model’s source. Values can be "Custom Model", "BAH", "BAH Partner", or "Open Source". It’s featured in the Model Marketplace.

string

The version’s release notes. It contains details such as version changes and accomplishments. It’s featured in the Model Details page.

string

The version’s status. Values can be partial, canceled, rejected, deleted, active, or inactive. Active versions are published in the Model Details page.

string

A summary of the model’s performance. It is published in the Model Details page.

processing
object
Responses

Language
Credentials
Request
Choose an example:
application/json