Download OpenAPI specification:
MLflow artifact repository endpoints for storing and retrieving ML experiment artifacts. This API provides HTTP endpoints that MLflow uses as an artifact destination.
Lists artifacts in the specified path within the MLflow artifacts directory. Returns metadata about each file or directory including path, type, and size.
| path | string Default: "" Relative path to list artifacts from |
{- "files": [
- {
- "path": "string",
- "is_dir": true,
- "file_size": 0
}
]
}Uploads a file to the specified path in storage. The file content is sent as raw binary in the request body.
| file_path required | string Full path where the artifact will be stored |
Raw binary content of the file
{- "message": "Artifact uploaded successfully"
}Removes the specified file or directory (and its contents) from storage. Supports recursive deletion of directories.
| file_path required | string Path to the artifact or directory to delete |
{- "message": "Artifact deleted successfully"
}