Integration audit log subscriptions
Get audit log subscription by ID
Get an audit log subscription by ID.
get/api/v2/integrations/{integrationKey}/{id}
Path parameters
integrationKeystring string required
The integration key
The integration key
idstring string required
The subscription ID
The subscription ID
Response
Integration response
Example response
{
"_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"
}
}
]
}
}