# Log Outputs

Launch stage: GA

`POST /api/2.0/mlflow/runs/outputs`

Logs outputs, such as models, from an MLflow Run.

API scopes: mlflow

## Request body

- `run_id` (string, optional)
  The ID of the Run from which to log outputs.
- `models` (array of object, optional)
  The model outputs from the Run.
  - `model_id` (string, optional)
    The unique identifier of the model.
  - `step` (int64, optional)
    The step at which the model was produced.

## Response

```json
{}
```

