# Set Logged Model Tags

Launch stage: GA

`PATCH /api/2.0/mlflow/logged-models/{model_id}/tags`

Set tags for a logged model.

API scopes: mlflow

## Path parameters

- `model_id` (string, optional)
  The ID of the logged model to set the tags on.

## Request body

- `tags` (array of object, optional)
  The tags to set on the logged model.
  - `key` (string, optional)
    The tag key.
  - `value` (string, optional)
    The tag value.

## Response

```json
{}
```

