diff --git a/docs/api/supervisor/endpoints.md b/docs/api/supervisor/endpoints.md
index cd8e3541..4815742d 100644
--- a/docs/api/supervisor/endpoints.md
+++ b/docs/api/supervisor/endpoints.md
@@ -1620,7 +1620,7 @@ Get information about host services.
Shutdown the host
-### ingress
+### Ingress
@@ -1675,6 +1675,53 @@ Validate an ingress session, extending it's validity period.
+### Jobs
+
+
+Returns info on ignored job conditions and currently running jobs
+
+**Returned data:**
+
+| key | type | description |
+| ----------------- | ---------- | -------------------------------------------------------------- |
+| ignore_conditions | list | List of job conditions being ignored |
+| jobs | list | List of currently running [Jobs](api/supervisor/models.md#job) |
+
+**Example response:**
+
+```json
+{
+ "ignore_conditions": [],
+ "jobs": [{
+ "name": "backup_manager_full_backup",
+ "reference": "a01bc3",
+ "uuid": "123456789",
+ "progress": 0,
+ "stage": "addons",
+ "done": false,
+ "child_jobs": []
+ }]
+}
+```
+
+
+
+
+Set options for job manager
+
+**Payload:**
+
+| key | type | description |
+| ----------------- | ---------- | --------------------------------------------------------- |
+| ignore_conditions | list | List of job conditions to ignore (replaces existing list) |
+
+
+
+
+Reset job manager to defaults (stops ignoring any ignored job conditions)
+
+
+
### Root
diff --git a/docs/api/supervisor/models.md b/docs/api/supervisor/models.md
index 9b25d543..f864c8eb 100644
--- a/docs/api/supervisor/models.md
+++ b/docs/api/supervisor/models.md
@@ -285,3 +285,15 @@ The `content` key of a backup object contains the following keys:
Request only fields may be included in requests but will never be in responses.
Response only fields will be in responses but cannot be included in requests.
+
+## Job
+
+| key | type | description |
+| ---------- | ------- | ------------------------------------------------------------- |
+| name | string | Name of the job |
+| reference | string | A unique ID for instance the job is acting on (if applicable) |
+| uuid | string | Unique ID of the job |
+| progress | int | Progress of the job (if accurate progress is obtainable) |
+| stage | string | A name for the stage the job is in (if applicable) |
+| done | boolean | Is the job complete |
+| child_jobs | list | A list of child [jobs](#job) started by this one |