diff --git a/docs/api/supervisor/endpoints.md b/docs/api/supervisor/endpoints.md
index 0976faac..acdc3198 100644
--- a/docs/api/supervisor/endpoints.md
+++ b/docs/api/supervisor/endpoints.md
@@ -1498,25 +1498,6 @@ Returns a dict with selected keys from other `/*/info` endpoints.
-
-/resolution
-
-**Returned data:**
-
-| key | type | description |
-| -------- | ---------- | ------------------------------------------------ |
-| unsupported | list | A list of reasons why a installation is marked as unsupported (container, dbus, docker_configuration, docker_version, lxc, network_manager, os, privileged, systemd) |
-
-**Example response:**
-
-```json
-{
- "unsupported": ["os"]
-}
-```
-
-
-
### Multicast
@@ -1780,6 +1761,45 @@ Update Home Assistant OS
+### Resolution
+
+
+/resolution
+
+**Returned data:**
+
+| key | type | description |
+| -------- | ---------- | ------------------------------------------------ |
+| unsupported | list | A list of reasons why a installation is marked as unsupported (container, dbus, docker_configuration, docker_version, lxc, network_manager, os, privileged, systemd) |
+| issues | list | A list of issues |
+| suggestions | list | A list of suggested actions |
+
+**Example response:**
+
+```json
+{
+ "unsupported": ["os"],
+ "issues": ["free_space"],
+ "suggestions": ["clear_snapshots"]
+}
+```
+
+
+
+
+/resolution/[suggestion]
+
+Apply a suggested action
+
+
+
+
+/resolution/[suggestion]/dismiss
+
+Dismiss a suggested action
+
+
+
### Service
@@ -2220,4 +2240,5 @@ Some of the endpoints uses placeholders indicated with `[]` in the endpoint URL.
| registry | A registry hostname defined in the container registry configuration, to get the hostname you can call `/docker/registries` |
| service | The service name for a service on the host. |
| snapshot | A valid snapshot slug, example `skuwe823`, to get the slug you can call `/snapshots` |
+| suggestion | A valid suggestion, example `clear_full_snapshot`, to get the suggestion you can call `/resolution` |
| uuid | The UUID of a discovery service, to get the UUID you can call `/discovery` |