Skip to content

Commit 6e42bca

Browse files
committed
Update README webhook configuration with plist format example
Replace plain URL with proper plist dictionary format showing both started and finished webhook keys. Add note about missing keys preventing webhook delivery.
1 parent 8fe2605 commit 6e42bca

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,19 @@ id = "paste-your-id-here"
101101
In your Setup Manager configuration, set the webhook URL to:
102102

103103
```
104-
https://setup-manager-hud.<your-subdomain>.workers.dev/webhook
104+
<key>webhooks</key>
105+
<dict>
106+
<key>finished</key>
107+
<string>https://setup-manager-hud.<your-subdomain>.workers.dev/webhook</string>
108+
<key>started</key>
109+
<string>https://setup-manager-hud.<your-subdomain>.workers.dev/webhook</string>
110+
</dict>
105111
```
106112

113+
Remember when either the started or finished key is missing, no webhook will be sent for that event.
114+
115+
116+
107117
Setup Manager will POST enrollment events to this endpoint. They'll appear on the dashboard in real-time.
108118

109119
> **Note:** The `/webhook` endpoint is excluded from authentication (see below) so devices can POST without credentials.

0 commit comments

Comments
 (0)