Uptime Monitor Integrations Retrieval
Retrieve all integration channels connected to a specific uptime monitor by providing its monitor_id in the path. This endpoint returns the alerting and automation tools that are actively linked to the monitor — such as email, Slack, webhook URLs, or other third-party services.

It provides clear visibility into how incidents from this monitor are being routed and which communication or response systems are set up to handle alerts.

Use cases:
  • Integration audits — Verify that the correct channels are connected and active for timely incident alerts.
  • Troubleshooting — Identify why notifications may not be triggering by confirming which integrations are in use.
  • Compliance and reporting — Review alert delivery setups for documentation or operational consistency.

To modify these connections, use the corresponding integration management endpoints within your monitoring settings.

Authorization: Bearer YOUR_TOKEN

Path Parameters
  • id string
    The unique ID of the uptime resource to retrieve the integrations for.
    Example: 'c03b02ec-244f-4d2c-8f68-3910071ed5c8'
JavaScript
Response codes
const axios = require('axios');

const url = 'https://resource-query.api.pinghome.io/v1/resource/c03b02ec-244f-4d2c-8f68-3910071ed5c8/integrations';

axios.get(url, {
    headers: {
        'Authorization': 'Bearer YOUR_TOKEN'
    }
})
.then(response => {
    console.log(response.data);
})
.catch(error => {
    console.error(error);
});
ResponseThis section is used to view the possible HTTP response codes returned by the API. These codes indicate the status of a request, such as 201 (Created), 401 (Unauthorized), 409 (Conflict), or 422 (Unprocessable Entity).