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
      • POSTCreate a flag import configuration
      • DELDelete a flag import configuration
      • GETGet a single flag import configuration
      • GETList all flag import configurations
      • POSTTrigger a single flag import run
      • PATCHUpdate a flag import configuration
    • 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
    • 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 overviewFlag Import Configurations Beta

List all flag import configurations

GET
/api/v2/integration-capabilities/flag-import
GET
/api/v2/integration-capabilities/flag-import
$curl https://app.launchdarkly.com/api/v2/integration-capabilities/flag-import \
> -H "Authorization: <apiKey>"
1{
2 "_links": {
3 "self": {
4 "href": "string",
5 "type": "string"
6 },
7 "parent": {
8 "href": "string",
9 "type": "string"
10 }
11 },
12 "items": [
13 {
14 "_links": {
15 "self": {
16 "href": "string",
17 "type": "string"
18 },
19 "parent": {
20 "href": "string",
21 "type": "string"
22 },
23 "project": {
24 "href": "string",
25 "type": "string"
26 }
27 },
28 "_id": "12ab3c4d5ef1a2345bcde67f",
29 "integrationKey": "split",
30 "projectKey": "default",
31 "config": {},
32 "tags": [],
33 "name": "Development environment configuration",
34 "version": 1,
35 "_status": {
36 "status": "pending",
37 "lastImport": 1717263000000,
38 "lastError": 1714584600000,
39 "errors": [
40 {
41 "integrationId": "string",
42 "message": "string",
43 "statusCode": 1,
44 "timestamp": 1
45 }
46 ]
47 },
48 "_access": {
49 "denied": [
50 {
51 "action": "string",
52 "reason": {
53 "effect": "allow",
54 "resources": [
55 "proj/*:env/*;qa_*:/flag/*"
56 ],
57 "notResources": [
58 "string"
59 ],
60 "actions": [
61 "*"
62 ],
63 "notActions": [
64 "string"
65 ],
66 "role_name": "string"
67 }
68 }
69 ],
70 "allowed": [
71 {
72 "action": "string",
73 "reason": {
74 "effect": "allow",
75 "resources": [
76 "proj/*:env/*;qa_*:/flag/*"
77 ],
78 "notResources": [
79 "string"
80 ],
81 "actions": [
82 "*"
83 ],
84 "notActions": [
85 "string"
86 ],
87 "role_name": "string"
88 }
89 }
90 ]
91 }
92 }
93 ]
94}
List all flag import configurations.
Was this page helpful?
Previous

Trigger a single flag import run

Next
Built with

Authentication

Authorizationstring
API Key authentication via header

Response

Flag Import Configuration response
_linksobject
The location and content type of related resources
itemslist of objects
An array of flag import configurations

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
409
Conflict Error
429
Too Many Requests Error