v5

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-02-283466592.5 MB
Integration audit log subscriptions

Get audit log subscriptions by integration

Get all audit log subscriptions associated with a given integration.

get/api/v2/integrations/{integrationKey}

Path parameters

integrationKeystring string required

The integration key

The integration key

Response

Integrations collection response

_linksobject
keystring

Example response

{
  "items": [
    {
      "_id": "1234a56b7c89d012345e678f",
      "kind": "datadog",
      "name": "Example Datadog integration",
      "statements": [
        {
          "resources": [
            "proj/*:env/*;qa_*:/flag/*"
          ],
          "actions": [
            "*"
          ],
          "effect": "allow"
        }
      ],
      "on": true,
      "tags": [
        "testing"
      ],
      "_access": {
        "denied": [
          {
            "reason": {
              "resources": [
                "proj/*:env/*;qa_*:/flag/*"
              ],
              "actions": [
                "*"
              ],
              "effect": "allow"
            }
          }
        ],
        "allowed": [
          {
            "reason": {
              "resources": [
                "proj/*:env/*;qa_*:/flag/*"
              ],
              "actions": [
                "*"
              ],
              "effect": "allow"
            }
          }
        ]
      }
    }
  ]
}