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
    • Integration Delivery Configurations Beta
    • Integrations Beta
    • Layers
    • Metrics
    • Metrics Beta
    • OAuth2 Clients
    • Persistent Store Integrations Beta
    • Projects
    • Relay Proxy Configurations
      • POSTCreate a new Relay Proxy config
      • DELDelete Relay Proxy config by ID
      • GETGet Relay Proxy config
      • GETList Relay Proxy configs
      • POSTReset Relay Proxy configuration key
      • PATCHUpdate a Relay Proxy config
    • 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 overviewRelay Proxy Configurations

List Relay Proxy configs

GET
/api/v2/account/relay-auto-configs
GET
/api/v2/account/relay-auto-configs
$curl https://app.launchdarkly.com/api/v2/account/relay-auto-configs \
> -H "Authorization: <apiKey>"
1{
2 "items": [
3 {
4 "_id": "12ab3c45de678910abc12345",
5 "name": "Relay Proxy Demo Config",
6 "policy": [
7 {
8 "effect": "allow",
9 "resources": [
10 "proj/*:env/*;qa_*:/flag/*"
11 ],
12 "notResources": [
13 "string"
14 ],
15 "actions": [
16 "*"
17 ],
18 "notActions": [
19 "string"
20 ]
21 }
22 ],
23 "displayKey": "7f30",
24 "creationDate": 1628001602644,
25 "lastModified": 1628001602644,
26 "_creator": {
27 "_links": {
28 "self": {
29 "href": "/api/v2/members/569f183514f4432160000007",
30 "type": "application/json"
31 }
32 },
33 "_id": "569f183514f4432160000007",
34 "role": "admin",
35 "email": "ariel@acme.com",
36 "firstName": "Ariel",
37 "lastName": "Flores"
38 },
39 "_access": {
40 "denied": [
41 {
42 "action": "string",
43 "reason": {
44 "effect": "allow",
45 "resources": [
46 "proj/*:env/*;qa_*:/flag/*"
47 ],
48 "notResources": [
49 "string"
50 ],
51 "actions": [
52 "*"
53 ],
54 "notActions": [
55 "string"
56 ],
57 "role_name": "string"
58 }
59 }
60 ],
61 "allowed": [
62 {
63 "action": "string",
64 "reason": {
65 "effect": "allow",
66 "resources": [
67 "proj/*:env/*;qa_*:/flag/*"
68 ],
69 "notResources": [
70 "string"
71 ],
72 "actions": [
73 "*"
74 ],
75 "notActions": [
76 "string"
77 ],
78 "role_name": "string"
79 }
80 }
81 ]
82 },
83 "fullKey": "string"
84 }
85 ]
86}
Get a list of Relay Proxy configurations in the account.
Was this page helpful?
Previous

Reset Relay Proxy configuration key

Next
Built with

Authentication

Authorizationstring
API Key authentication via header

Response

Relay auto configs collection response
itemslist of objects
An array of Relay Proxy configurations

Errors

401
Unauthorized Error
403
Forbidden Error
429
Too Many Requests Error