update_asset_metadata
Update photo metadata like dates, GPS location, description, favorite status, and rating on a single asset in Immich.
Instructions
Update metadata fields on a specific asset. Use this to fix dates, correct GPS, add descriptions, or change favorite/rating status. Only provided fields are modified. Side effect: permanently changes asset metadata in Immich.
Args:
asset_id: The asset's UUID.
date_time_original: ISO 8601 datetime (e.g. '2019-07-14T15:23:41.000Z').
latitude: GPS latitude, decimal degrees (-90.0 to 90.0).
longitude: GPS longitude, decimal degrees (-180.0 to 180.0).
description: Free-text description/caption for the asset.
is_favorite: Set favorite status (true/false).
rating: Star rating (1-5), or null to clear.
Returns: JSON with the updated asset object.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asset_id | Yes | ||
| date_time_original | No | ||
| latitude | No | ||
| longitude | No | ||
| description | No | ||
| is_favorite | No | ||
| rating | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |