Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/Contributing/reference/api-for-contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -4756,6 +4756,9 @@ _Available in Fleet Premium._
| app_store_apps.install_during_setup | boolean | body | Specifies whether the VPP app is included in Setup experience. |
| app_store_apps.labels_include_any | array | body | App will only be available for install on hosts that **have any** of these labels. Only one of either `labels_include_any` or `labels_exclude_any` can be included in the request. |
| app_store_apps.labels_exclude_any | array | body | App will only be available for install on hosts that **don't have any** of these labels. Only one of either `labels_include_any` or `labels_exclude_any` can be included in the request. |
| app_store_apps.auto_update_enabled | boolean | body | **Optional**. Whether automatic updates are enabled for this iOS/iPadOS VPP app. |
| app_store_apps.auto_update_start_time | string | body | **Optional**. The start time (in HH:MM format, UTC) of the window during which automatic updates can occur. Required if `auto_update_enabled` is `true`. |
Copy link
Member

@lucasmrod lucasmrod Jan 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not UTC, it's host local time. (Same with end.)

| app_store_apps.auto_update_end_time | string | body | **Optional**. The end time (in HH:MM format, UTC) of the window during which automatic updates can occur. Required if `auto_update_enabled` is `true`. |

#### Example

Expand All @@ -4777,7 +4780,10 @@ _Available in Fleet Premium._
},
{
"app_store_id": "497799835",
"self_service": true
"self_service": true,
"auto_update_enabled": true,
"auto_update_start_time": "01:00",
"auto_update_end_time": "05:00"
}
]
}
Expand Down
Loading