POST /v1/mlmodels
Create an ML Model
Create a new ML model within an ML model service
POST
POST /v1/mlmodels
Create an ML Model
Create a new ML model within an ML model service.Body Parameters
string
required
Name of the ML model. Must be unique within the parent ML model service.
string
required
Fully qualified name of the parent MlModelService (e.g.,
mlflow_svc).string
Algorithm used by the ML model (e.g.,
KMeans, RandomForest, XGBoost, Neural Network).string
Human-readable display name for the ML model.
string
Description of the ML model in Markdown format.
array
Array of ML features used by the model.
array
Array of hyperparameters used by the model.
string
Target variable or objective of the ML model.
string
Endpoint URL for the model serving server.
object
Reference to an associated dashboard entity.
array
Array of owner references (users or teams) to assign to the ML model.
string
Fully qualified name of the domain to assign for governance purposes.
array
Array of classification tags to apply to the ML model.
object
Custom property values defined by your organization’s metadata schema.
POST /v1/mlmodels
Returns
Returns the created ML model object with all specified properties and system-generated fields.Response
string
Unique identifier for the ML model (UUID format).
string
ML model name.
string
Fully qualified name in format
service.modelName.string
Human-readable display name.
string
Description of the ML model in Markdown format.
string
Algorithm used by the ML model.
array
Features used by the ML model.
array
Hyperparameters used by the ML model.
string
Target variable or objective of the ML model.
object
Reference to the parent ML model service.
string
Type of ML model service (e.g., Mlflow, Sklearn, SageMaker).
array
List of owners assigned to the ML model.
array
Domain assignments for governance.
array
Classification tags applied to the ML model.
object
Custom property values defined by your organization’s metadata schema.
number
Version number for the entity (starts at 0.1).
Create or Update (PUT)
UsePUT /v1/mlmodels instead of POST to perform an upsert. If an ML model with the same fullyQualifiedName already exists, it will be updated; otherwise, a new ML model is created. The request body is the same as POST.
PUT will not return a 409 conflict error if the entity already exists — it will update the existing entity instead.Bulk Create or Update (PUT)
UsePUT /v1/mlmodels/bulk to create or update multiple ML models in a single request. The request body is an array of create request objects.