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
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"
}
}
]
}
}
]
}