POST /v1/services/mlmodelServices
Create an ML Model Service
Create a new ML model service connection
POST
POST /v1/services/mlmodelServices
Create an ML Model Service
Create a new ML model service connection to a platform such as Mlflow, Sklearn, or SageMaker.Body Parameters
string
required
Name of the ML model service. Must be unique across all ML model services.
string
required
Type of ML model service (e.g.,
Mlflow, Sklearn, SageMaker, CustomMlModel).object
required
Connection configuration specific to the service type.
string
Human-readable display name for the ML model service.
string
Description of the ML model service in Markdown format.
array
Array of owner references (users or teams) to assign to the service.
string
Fully qualified name of the domain to assign for governance purposes.
array
Array of classification tags to apply to the ML model service.
POST /v1/services/mlmodelServices
Returns
Returns the created ML model service object with all specified properties and system-generated fields.Response
string
Unique identifier for the ML model service (UUID format).
string
ML model service name.
string
Fully qualified name of the service.
string
Human-readable display name.
string
Description of the ML model service in Markdown format.
string
Type of ML model service (e.g., Mlflow, Sklearn, SageMaker, CustomMlModel).
object
Connection configuration for the service.
array
List of owners assigned to the ML model service.
string
Fully qualified name of the assigned domain.
array
Classification tags applied to the ML model service.
number
Version number for the entity (starts at 0.1).
Create or Update (PUT)
UsePUT /v1/services/mlmodelServices instead of POST to perform an upsert. If an ML model service with the same fullyQualifiedName already exists, it will be updated; otherwise, a new service 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/services/mlmodelServices/bulk to create or update multiple ML model services in a single request. The request body is an array of create request objects.