For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Sign inTry it free
DocsGuidesSDKsIntegrationsAPI docsTutorialsFlagship blog
DocsGuidesSDKsIntegrationsAPI docsTutorialsFlagship blog
  • REST API overview
    • Access Tokens
    • Account Members
    • Account Usage Beta
    • AI Configs
    • Announcements
    • Applications Beta
    • Approvals
    • Approvals Beta
    • Audit Log
    • Code References
    • Contexts
    • Context Settings
    • Custom Roles
    • Data Export Destinations
    • Environments
    • Experiments
    • Feature Flags
    • Feature Flags Beta
    • Flag Import Configurations Beta
    • Flag Links Beta
    • Flag Triggers
    • Follow Flags
    • Holdouts Beta
    • Insights Charts Beta
    • Insights Deployments Beta
    • Insights Flag Events Beta
    • Insights Pull Requests Beta
    • Insights Repositories Beta
    • Insights Scores Beta
    • Integration Audit Log Subscriptions
      • POSTCreate audit log subscription
      • DELDelete audit log subscription
      • GETGet audit log subscription by ID
      • GETGet audit log subscriptions by integration
      • PATCHUpdate audit log subscription
    • Integration Delivery Configurations Beta
    • Integrations Beta
    • Layers
    • Metrics
    • Metrics Beta
    • OAuth2 Clients
    • Persistent Store Integrations Beta
    • Projects
    • Relay Proxy Configurations
    • Release Pipelines Beta
    • Releases Beta
    • Scheduled Changes
    • Segments
    • Tags
    • Teams
    • Teams Beta
    • Users
    • Users Beta
    • User Settings
    • Views Beta
    • Webhooks
    • Workflows
    • Workflow Templates
    • Other
Sign inTry it free
LogoLogo
REST API overviewIntegration Audit Log Subscriptions

Get audit log subscriptions by integration

GET
/api/v2/integrations/:integrationKey
GET
/api/v2/integrations/:integrationKey
$curl https://app.launchdarkly.com/api/v2/integrations/integrationKey \
> -H "Authorization: <apiKey>"
1{
2 "_links": {},
3 "items": [
4 {
5 "_links": {},
6 "_id": "1234a56b7c89d012345e678f",
7 "kind": "datadog",
8 "name": "Example Datadog integration",
9 "config": {},
10 "statements": [
11 {
12 "effect": "allow",
13 "resources": [
14 "proj/*:env/*;qa_*:/flag/*"
15 ],
16 "notResources": [
17 "string"
18 ],
19 "actions": [
20 "*"
21 ],
22 "notActions": [
23 "string"
24 ]
25 }
26 ],
27 "on": true,
28 "tags": [
29 "testing"
30 ],
31 "_access": {
32 "denied": [
33 {
34 "action": "string",
35 "reason": {
36 "effect": "allow",
37 "resources": [
38 "proj/*:env/*;qa_*:/flag/*"
39 ],
40 "notResources": [
41 "string"
42 ],
43 "actions": [
44 "*"
45 ],
46 "notActions": [
47 "string"
48 ],
49 "role_name": "string"
50 }
51 }
52 ],
53 "allowed": [
54 {
55 "action": "string",
56 "reason": {
57 "effect": "allow",
58 "resources": [
59 "proj/*:env/*;qa_*:/flag/*"
60 ],
61 "notResources": [
62 "string"
63 ],
64 "actions": [
65 "*"
66 ],
67 "notActions": [
68 "string"
69 ],
70 "role_name": "string"
71 }
72 }
73 ]
74 },
75 "_status": {
76 "successCount": 1,
77 "lastSuccess": 1,
78 "lastError": 1,
79 "errorCount": 1,
80 "errors": [
81 {
82 "statusCode": 1,
83 "responseBody": "string",
84 "timestamp": 1
85 }
86 ]
87 },
88 "url": "string",
89 "apiKey": "string"
90 }
91 ],
92 "key": "string"
93}
Get all audit log subscriptions associated with a given integration.
Was this page helpful?
Previous

Update audit log subscription

Next
Built with

Authentication

Authorizationstring
API Key authentication via header

Path parameters

integrationKeystringRequiredformat: "string"
The integration key

Response

Integrations collection response
_linksmap from strings to objects
itemslist of objects
keystring

Errors

401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
429
Too Many Requests Error