Actually this uses standard monitoring tools rather than vendor APIs. I will describe the approach using HTTP conditional requests per RFC 7232.
- First, identify the configuration page. Note the ETag or Last-Modified header. Configure your monitoring tool to poll at reasonable intervals, comparing these headers. When they change, the page has updated.
- Second, parse the HTML for your target specification. Actually XPath is more reliable than regular expressions for this purpose.
- Third, send yourself a notification. I use a local webhook to avoid rate limits.
I recommend polling no more frequently than once per 300 seconds. Thank you for reading.