Skip to main content
GET
/
api
/
v1
/
resource-groups
List all resource groups for the authenticated org with health summaries
curl --request GET \
  --url https://api.devhelm.io/api/v1/resource-groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organizationId": 123,
      "name": "<string>",
      "slug": "<string>",
      "description": "<string>",
      "alertPolicyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "defaultFrequency": 123,
      "defaultRegions": [
        "<string>"
      ],
      "defaultRetryStrategy": {
        "type": "<string>",
        "maxRetries": 123,
        "interval": 123
      },
      "defaultAlertChannels": [
        "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      ],
      "defaultEnvironmentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "healthThresholdType": "COUNT",
      "healthThresholdValue": 123,
      "suppressMemberAlerts": true,
      "confirmationDelaySeconds": 123,
      "recoveryCooldownMinutes": 123,
      "health": {
        "status": "operational",
        "totalMembers": 123,
        "operationalCount": 123,
        "activeIncidents": 123,
        "thresholdStatus": "healthy",
        "failingCount": 123
      },
      "members": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "memberType": "<string>",
          "monitorId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "serviceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>",
          "slug": "<string>",
          "subscriptionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "status": "operational",
          "effectiveFrequency": "<string>",
          "createdAt": "2023-11-07T05:31:56Z",
          "uptime24h": 123,
          "chartData": [
            123
          ],
          "avgLatencyMs": 123,
          "p95LatencyMs": 123,
          "lastCheckedAt": "2023-11-07T05:31:56Z",
          "monitorType": "<string>",
          "environmentName": "<string>"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "hasNext": true,
  "hasPrev": true
}

Authorizations

Authorization
string
header
required

API key (dh_live_...) or Auth0 JWT token

Response

200 - */*

OK

data
object[]
hasNext
boolean
hasPrev
boolean