Unknown macro: {next_previous_links}
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Overview

DescriptionCreating a model
Resource Path

/api/models

HTTP MethodPOST
Request/Response Formatapplication/json

Example

For information on the property definitions that are used in a JSON file to define a model, see Sample Model Definition.

POST /api/models
{
    "name": "wso2-ml-model",
    "analysisId": 1,
    "versionSetId": 1
}

Sample cURL command

curl -X POST -d @<JSON_PAYLOAD> -H "Content-Type: application/json" -H "Authorization: Basic YWRtaW46YWRtaW4=" -v https://<ML_HOST>:<ML_HTTPS_PORT>/api/models -k
  • The path to the JSON file that defines the model needs to be defined as the <JSON_PAYLOAD> value.
  • By default, <ML_HOST> is localhost. However, if you are using a public IP, the respective IP address or domain needs to be specified.
  • By default, <ML_HTTPS_PORT> has been set to 9443. However, if the port offset has been incremented by n, the default port value needs to be incremented by n.

An example cURL command is as follows.

curl -X POST -d @'create-model' -H "Content-Type: application/json" -H "Authorization: Basic YWRtaW46YWRtaW4=" -v https://localhost:9443/api/models -k

REST API response

HTTP status code

200

For descriptions of the HTTP status codes, see HTTP Status Codes.

  • No labels