From 2e3a1f29363399217714a9031c7dcce7c5f0f2de Mon Sep 17 00:00:00 2001 From: "Nattie C." <47332368+nattiechan@users.noreply.github.com> Date: Sat, 4 Jul 2026 13:10:04 -0700 Subject: [PATCH 1/7] docs(edge proxy): Update caveats link The current link does not link to relevant content, so this commit fixes the issue --- docs/docs/performance/edge-proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/performance/edge-proxy.md b/docs/docs/performance/edge-proxy.md index 096c135f228c..1c6d8ab834f7 100644 --- a/docs/docs/performance/edge-proxy.md +++ b/docs/docs/performance/edge-proxy.md @@ -17,7 +17,7 @@ The main benefit to running server side SDKs in [Local Evaluation Mode](/integra :::info -The Edge Proxy has the same [caveats as running our SDK in Local Evaluation mode.](/integrating-with-flagsmith/integration-overview). +The Edge Proxy has the same [caveats as running our SDK in Local Evaluation mode](/integrating-with-flagsmith/sdks/#for-local-evaluation). ::: From 5c1d481b77fa3caf0673ba8f3d933263fbe30755 Mon Sep 17 00:00:00 2001 From: "Nattie C." <47332368+nattiechan@users.noreply.github.com> Date: Tue, 7 Jul 2026 17:42:53 -0700 Subject: [PATCH 2/7] docs(edge proxy): Add clarity around api url - Add default info to `api_url` config - Add more info on identity override troubleshooting --- docs/docs/deployment-self-hosting/edge-proxy.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/deployment-self-hosting/edge-proxy.md b/docs/docs/deployment-self-hosting/edge-proxy.md index e636e1c5d7a9..b9ab157019df 100644 --- a/docs/docs/deployment-self-hosting/edge-proxy.md +++ b/docs/docs/deployment-self-hosting/edge-proxy.md @@ -101,6 +101,8 @@ corresponding client-side key. #### `api_url` +The URL that edge proxy uses to retrieve the environment document, and poll the Flagmsith API for changes. Defaults to `https://edge.api.flagsmith.com/api/v1`. + If you are self-hosting Flagsmith, set this to your API URL: ```json @@ -401,6 +403,7 @@ If your client is hitting the proxy and the result differs from a direct API cal between calls — see [Managing Traits](/performance/edge-proxy#managing-traits). - If the result was correct before and is now stale after deleting an identity override, upgrade to Edge Proxy v2.21.1 or newer (see [Identity overrides](#identity-overrides)). +- If the evaluation comes from an identity override and your edge proxy fetches updates from the Edge API, ensure the [default](#api_url) `api_url` is used. - Disable [endpoint caches](#endpoint_caches) temporarily to rule out a cached response. ## Production deployment From 82d8fbb103a0b0cd080046902747de280e58c966 Mon Sep 17 00:00:00 2001 From: "Nattie C." <47332368+nattiechan@users.noreply.github.com> Date: Tue, 7 Jul 2026 18:06:05 -0700 Subject: [PATCH 3/7] docs(local eval): Update link Update the links to local evaluation mode to be more specific depending on the context --- docs/docs/best-practices/defensive-coding.md | 2 +- docs/docs/best-practices/efficient-api-usage.md | 4 ++-- docs/docs/deployment-self-hosting/edge-proxy.md | 2 +- docs/docs/performance/edge-proxy.md | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/docs/best-practices/defensive-coding.md b/docs/docs/best-practices/defensive-coding.md index 195eedb20e5c..50696767bf65 100644 --- a/docs/docs/best-practices/defensive-coding.md +++ b/docs/docs/best-practices/defensive-coding.md @@ -57,7 +57,7 @@ In addition to this, by default our client-sde SDKs will only make a network cal ### Server side SDKs and local evaluation mode -If you need sub-millisecond latency for end-to-end flag evaluation, for example in the event that you are running a multi-variate test on a landing page of your website, you can employ one of our Server Side SDKs running in [local evaluation mode](/integrating-with-flagsmith/integration-overview) mode. This will provide sub-millisecond latency of the entire flag evaluation rules engine, running locally within your server infrastructure, allowing you to run multivariate tests with zero latency impact. +If you need sub-millisecond latency for end-to-end flag evaluation, for example in the event that you are running a multi-variate test on a landing page of your website, you can employ one of our Server Side SDKs running in [local evaluation mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). This will provide sub-millisecond latency of the entire flag evaluation rules engine, running locally within your server infrastructure, allowing you to run multivariate tests with zero latency impact. ### No proxy-server required diff --git a/docs/docs/best-practices/efficient-api-usage.md b/docs/docs/best-practices/efficient-api-usage.md index 18aecf8594ca..979769aa42c4 100644 --- a/docs/docs/best-practices/efficient-api-usage.md +++ b/docs/docs/best-practices/efficient-api-usage.md @@ -39,14 +39,14 @@ That being said, there are use-cases for real time flags. Using our [real-time f ### Local Evaluation Mode -The most efficient way of evaluating feature flags on the server is using [local evaluation mode](/integrating-with-flagsmith/integration-overview). There are [some caveats](/integrating-with-flagsmith/integration-overview), so please be aware of them! +The most efficient way of evaluating feature flags on the server is using [local evaluation mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). There are [some caveats](/integrating-with-flagsmith/sdks/#for-local-evaluation), so please be aware of them! ### CDN Usage There are 3 main API calls the Flagsmith SDK can make: 1. Get the [Environment Document](/integrating-with-flagsmith/integration-overview) for - [Local Evaluation mode](/integrating-with-flagsmith/integration-overview). + [Local Evaluation mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). 2. Get the Flags for an Environment. 3. Get the Flags for an Identity. diff --git a/docs/docs/deployment-self-hosting/edge-proxy.md b/docs/docs/deployment-self-hosting/edge-proxy.md index b9ab157019df..459b589f0d8e 100644 --- a/docs/docs/deployment-self-hosting/edge-proxy.md +++ b/docs/docs/deployment-self-hosting/edge-proxy.md @@ -334,7 +334,7 @@ later, or use `:latest`, to pick up override deletions. When a **request** matches both an identity override and a segment override, the identity override takes precedence — this matches the behaviour of -[Local Evaluation Mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). +[Local Evaluation Mode](/integrating-with-flagsmith/sdks/#for-local-evaluation). ## Troubleshooting diff --git a/docs/docs/performance/edge-proxy.md b/docs/docs/performance/edge-proxy.md index 1c6d8ab834f7..3651e878524d 100644 --- a/docs/docs/performance/edge-proxy.md +++ b/docs/docs/performance/edge-proxy.md @@ -7,11 +7,11 @@ sidebar_position: 10 The Flagsmith Edge Proxy is a service that you host yourself, that allows you to run an instance of the Flagsmith Engine close to your servers. If you are running Flagsmith within a server-side environment and you want to have very low latency flags, you have two options: 1. Run the Edge Proxy within in your own infrastructure and connect to it from your server-side SDKs -2. Run your server-side SDKs in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview). +2. Run your server-side SDKs in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). The main benefit to running the Edge Proxy is that you reduce your polling requests against the Flagsmith API itself. -The main benefit to running server side SDKs in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview) is that you get the lowest possible latency. +The main benefit to running server side SDKs in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode) is that you get the lowest possible latency. ## How does it work @@ -21,7 +21,7 @@ The Edge Proxy has the same [caveats as running our SDK in Local Evaluation mode ::: -You can think of the Edge Proxy as a copy of our Python Server Side SDK, running in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview), with an API interface that is compatible with the Flagsmith SDK API. +You can think of the Edge Proxy as a copy of our Python Server Side SDK, running in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode), with an API interface that is compatible with the Flagsmith SDK API. The Edge Proxy runs as a lightweight Docker container. It connects to the Flagsmith API (either powered by us at `edge.api.flagsmith.com` or self hosted by you) to get environment flags and segment rules. You can then point the Flagsmith SDKs to your Edge Proxy; it implements all the current SDK endpoints. This means you can serve a very large number of requests close to your infrastructure and users, at very low latency. Check out the [architecture below](#architecture). From 8335dba385b908eede56f2cc7cc39581d02c275e Mon Sep 17 00:00:00 2001 From: "Nattie C." <47332368+nattiechan@users.noreply.github.com> Date: Tue, 7 Jul 2026 18:13:31 -0700 Subject: [PATCH 4/7] docs(env doc): Update links for env docs --- .../governance-and-compliance/api-usage.md | 2 +- docs/docs/best-practices/efficient-api-usage.md | 2 +- docs/docs/getting-started/glossary.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/administration-and-security/governance-and-compliance/api-usage.md b/docs/docs/administration-and-security/governance-and-compliance/api-usage.md index 49931fa7b5e5..2fa82b132c27 100644 --- a/docs/docs/administration-and-security/governance-and-compliance/api-usage.md +++ b/docs/docs/administration-and-security/governance-and-compliance/api-usage.md @@ -7,7 +7,7 @@ Flagsmith will track API calls made by the SDKS and store them in its data-store 1. Get Flags 2. Get Identity Flags 3. Set Identity Traits -4. Get [Environment Document](/integrating-with-flagsmith/integration-overview) (for local evaluation SDKs) +4. Get [Environment Document](/integrating-with-flagsmith/sdks/#the-environment-document) (for local evaluation SDKs) ![API Usage](/img/api-usage.png) diff --git a/docs/docs/best-practices/efficient-api-usage.md b/docs/docs/best-practices/efficient-api-usage.md index 979769aa42c4..1766be4f8ace 100644 --- a/docs/docs/best-practices/efficient-api-usage.md +++ b/docs/docs/best-practices/efficient-api-usage.md @@ -45,7 +45,7 @@ The most efficient way of evaluating feature flags on the server is using [local There are 3 main API calls the Flagsmith SDK can make: -1. Get the [Environment Document](/integrating-with-flagsmith/integration-overview) for +1. Get the [Environment Document](/integrating-with-flagsmith/sdks/#the-environment-document) for [Local Evaluation mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). 2. Get the Flags for an Environment. 3. Get the Flags for an Identity. diff --git a/docs/docs/getting-started/glossary.md b/docs/docs/getting-started/glossary.md index 0a79b967947f..f78faeab4083 100644 --- a/docs/docs/getting-started/glossary.md +++ b/docs/docs/getting-started/glossary.md @@ -16,7 +16,7 @@ This glossary provides concise definitions for some of the key concepts within F - [**Environment**](/flagsmith-concepts/data-model#environments): Environments are a way to separate the configuration of your features. A project can have any number of environments. -- [**Environment Document**](/integrating-with-flagsmith/integration-overview): A JSON document containing all configuration for feature flags in an environment. +- [**Environment Document**](/integrating-with-flagsmith/sdks/#the-environment-document): A JSON document containing all configuration for feature flags in an environment. - [**Feature**](/flagsmith-concepts/data-model#features): A configuration that can be enabled, disabled, or set to a specific value. Features are shared across all Environments in a project, but their values/states can be modified between Environments. From f2e70db5168ffd970367399e14e0872d857450d9 Mon Sep 17 00:00:00 2001 From: "Nattie C." <47332368+nattiechan@users.noreply.github.com> Date: Tue, 7 Jul 2026 18:21:54 -0700 Subject: [PATCH 5/7] docs(local eval): Update links There is a more comprehensive link in SDK overview, so using that one instead --- docs/docs/administration-and-security/billing-api-usage.md | 4 ++-- docs/docs/best-practices/defensive-coding.md | 4 ++-- docs/docs/best-practices/efficient-api-usage.md | 4 ++-- docs/docs/getting-started/glossary.md | 2 +- docs/docs/integrating-with-flagsmith/sdks/index.md | 2 +- docs/docs/performance/edge-proxy.md | 6 +++--- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/docs/administration-and-security/billing-api-usage.md b/docs/docs/administration-and-security/billing-api-usage.md index 1639652fad1d..f317f52acaeb 100644 --- a/docs/docs/administration-and-security/billing-api-usage.md +++ b/docs/docs/administration-and-security/billing-api-usage.md @@ -117,11 +117,11 @@ application. For example, when a user visits a certain part of your application a mobile application is brought to the foreground. * Consider using an Edge Proxy as your source of flags instead of calling the Flagsmith API directly. * If you have a suitable backend, consider evaluating flags server-side instead. This enables other usage patterns that -result in fewer API calls, such as [Local Evaluation](/integrating-with-flagsmith/integration-overview#local-evaluation-mode) and custom cache implementations. +result in fewer API calls, such as [Local Evaluation](/integrating-with-flagsmith/sdks/#local-evaluation) and custom cache implementations. For server-side applications: -* Consider using [Local Evaluation](/integrating-with-flagsmith/integration-overview#local-evaluation-mode), or deploying [Edge Proxies](/performance/edge-proxy). +* Consider using [Local Evaluation](/integrating-with-flagsmith/sdks/#local-evaluation), or deploying [Edge Proxies](/performance/edge-proxy). * Reduce the polling rate for Edge Proxies and any SDKs using Local Evaluation. * If your use case allows for it, use the Flagsmith SDK in Offline Mode. diff --git a/docs/docs/best-practices/defensive-coding.md b/docs/docs/best-practices/defensive-coding.md index 50696767bf65..6066cbf1b96f 100644 --- a/docs/docs/best-practices/defensive-coding.md +++ b/docs/docs/best-practices/defensive-coding.md @@ -27,7 +27,7 @@ So with that in mind, here are some rules you can follow to avoid any issues ste The solution here really depends on which of our SDKs you are using. By default our Client SDKs will not block your main application thread, and are designed to work around an asynchronous callback model. -Where our Server Side SDKs are being used, it really depends on if you are using them in [local or remote evaluation mode](/integrating-with-flagsmith/integration-overview). When running in local evaluation mode, once the SDKs have received a response from the API with the Environment related data, they will keep that data in memory. In the event of the SDKs then not receiving an update, they will continue to function. +Where our Server Side SDKs are being used, it really depends on if you are using them in [local or remote evaluation mode](/integrating-with-flagsmith/sdks/#server-side-sdks). When running in local evaluation mode, once the SDKs have received a response from the API with the Environment related data, they will keep that data in memory. In the event of the SDKs then not receiving an update, they will continue to function. In the event that the SDKs aren't able to contact the API at all, they will time out and resort to [Default flags](#progressively-enhance-your-application-with-default-flags). When running in remote evaluation mode, you will need to decide what the best approach is based on your particular application. Again, [Default flags](#progressively-enhance-your-application-with-default-flags) can help here. @@ -57,7 +57,7 @@ In addition to this, by default our client-sde SDKs will only make a network cal ### Server side SDKs and local evaluation mode -If you need sub-millisecond latency for end-to-end flag evaluation, for example in the event that you are running a multi-variate test on a landing page of your website, you can employ one of our Server Side SDKs running in [local evaluation mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). This will provide sub-millisecond latency of the entire flag evaluation rules engine, running locally within your server infrastructure, allowing you to run multivariate tests with zero latency impact. +If you need sub-millisecond latency for end-to-end flag evaluation, for example in the event that you are running a multi-variate test on a landing page of your website, you can employ one of our Server Side SDKs running in [local evaluation mode](/integrating-with-flagsmith/sdks/#local-evaluation). This will provide sub-millisecond latency of the entire flag evaluation rules engine, running locally within your server infrastructure, allowing you to run multivariate tests with zero latency impact. ### No proxy-server required diff --git a/docs/docs/best-practices/efficient-api-usage.md b/docs/docs/best-practices/efficient-api-usage.md index 1766be4f8ace..36602c2836ea 100644 --- a/docs/docs/best-practices/efficient-api-usage.md +++ b/docs/docs/best-practices/efficient-api-usage.md @@ -39,14 +39,14 @@ That being said, there are use-cases for real time flags. Using our [real-time f ### Local Evaluation Mode -The most efficient way of evaluating feature flags on the server is using [local evaluation mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). There are [some caveats](/integrating-with-flagsmith/sdks/#for-local-evaluation), so please be aware of them! +The most efficient way of evaluating feature flags on the server is using [local evaluation mode](/integrating-with-flagsmith/sdks/#local-evaluation). There are [some caveats](/integrating-with-flagsmith/sdks/#for-local-evaluation), so please be aware of them! ### CDN Usage There are 3 main API calls the Flagsmith SDK can make: 1. Get the [Environment Document](/integrating-with-flagsmith/sdks/#the-environment-document) for - [Local Evaluation mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). + [Local Evaluation mode](/integrating-with-flagsmith/sdks/#local-evaluation). 2. Get the Flags for an Environment. 3. Get the Flags for an Identity. diff --git a/docs/docs/getting-started/glossary.md b/docs/docs/getting-started/glossary.md index f78faeab4083..f9897b5784cd 100644 --- a/docs/docs/getting-started/glossary.md +++ b/docs/docs/getting-started/glossary.md @@ -24,7 +24,7 @@ This glossary provides concise definitions for some of the key concepts within F - [**Identity**](/flagsmith-concepts/data-model#identities): An entity within a particular environment, against which you can manage and override feature settings. -- [**Local Evaluation Mode**](/integrating-with-flagsmith/integration-overview): A mode where the SDK evaluates feature flags locally using a downloaded environment document, reducing latency and API calls. +- [**Local Evaluation Mode**](/integrating-with-flagsmith/sdks/#local-evaluation): A mode where the SDK evaluates feature flags locally using a downloaded environment document, reducing latency and API calls. - [**Multivariate Flag**](/managing-flags/core-management): A feature flag that can take on multiple values (not just on/off), useful for A/B testing. diff --git a/docs/docs/integrating-with-flagsmith/sdks/index.md b/docs/docs/integrating-with-flagsmith/sdks/index.md index 98385f16e66b..5c1bac9b9073 100644 --- a/docs/docs/integrating-with-flagsmith/sdks/index.md +++ b/docs/docs/integrating-with-flagsmith/sdks/index.md @@ -288,7 +288,7 @@ These keys are not secret and can be considered public. ### Server-Side SDK -Server-side SDK Keys give server-side SDKs access to [Local Evaluation](#remote-evaluation) mode. +Server-side SDK Keys give server-side SDKs access to [Local Evaluation](#local-evaluation) mode. These keys are secret and should not be shared. diff --git a/docs/docs/performance/edge-proxy.md b/docs/docs/performance/edge-proxy.md index 3651e878524d..c5a3370f70a1 100644 --- a/docs/docs/performance/edge-proxy.md +++ b/docs/docs/performance/edge-proxy.md @@ -7,11 +7,11 @@ sidebar_position: 10 The Flagsmith Edge Proxy is a service that you host yourself, that allows you to run an instance of the Flagsmith Engine close to your servers. If you are running Flagsmith within a server-side environment and you want to have very low latency flags, you have two options: 1. Run the Edge Proxy within in your own infrastructure and connect to it from your server-side SDKs -2. Run your server-side SDKs in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode). +2. Run your server-side SDKs in [Local Evaluation Mode](/integrating-with-flagsmith/sdks/#local-evaluation). The main benefit to running the Edge Proxy is that you reduce your polling requests against the Flagsmith API itself. -The main benefit to running server side SDKs in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode) is that you get the lowest possible latency. +The main benefit to running server side SDKs in [Local Evaluation Mode](/integrating-with-flagsmith/sdks/#local-evaluation) is that you get the lowest possible latency. ## How does it work @@ -21,7 +21,7 @@ The Edge Proxy has the same [caveats as running our SDK in Local Evaluation mode ::: -You can think of the Edge Proxy as a copy of our Python Server Side SDK, running in [Local Evaluation Mode](/integrating-with-flagsmith/integration-overview#local-evaluation-mode), with an API interface that is compatible with the Flagsmith SDK API. +You can think of the Edge Proxy as a copy of our Python Server Side SDK, running in [Local Evaluation Mode](/integrating-with-flagsmith/sdks/#local-evaluation), with an API interface that is compatible with the Flagsmith SDK API. The Edge Proxy runs as a lightweight Docker container. It connects to the Flagsmith API (either powered by us at `edge.api.flagsmith.com` or self hosted by you) to get environment flags and segment rules. You can then point the Flagsmith SDKs to your Edge Proxy; it implements all the current SDK endpoints. This means you can serve a very large number of requests close to your infrastructure and users, at very low latency. Check out the [architecture below](#architecture). From 5dad1e367d1da6814157b165e9492697a34e4a35 Mon Sep 17 00:00:00 2001 From: "Nattie C." <47332368+nattiechan@users.noreply.github.com> Date: Tue, 7 Jul 2026 18:38:33 -0700 Subject: [PATCH 6/7] chore(openapi): Generate docs --- docs/docs/sdk-api/flagsmith-api.info.mdx | 1 + .../sdk-v-1-environment-document.api.mdx | 4 ++-- docs/docs/sdk-api/sdk-v-1-flags.api.mdx | 2 +- .../sdk-api/sdk-v-1-get-identities.api.mdx | 4 ++-- .../sdk-api/sdk-v-1-post-identities.api.mdx | 6 +++--- docs/docs/sdk-api/sdk.tag.mdx | 20 +++++++++++++++++++ docs/docs/sdk-api/sidebar.ts | 4 ++++ 7 files changed, 33 insertions(+), 8 deletions(-) create mode 100644 docs/docs/sdk-api/sdk.tag.mdx diff --git a/docs/docs/sdk-api/flagsmith-api.info.mdx b/docs/docs/sdk-api/flagsmith-api.info.mdx index fa33c82e7ed9..dfa8cd3b722b 100644 --- a/docs/docs/sdk-api/flagsmith-api.info.mdx +++ b/docs/docs/sdk-api/flagsmith-api.info.mdx @@ -27,4 +27,5 @@ Please note that the SDK API is specifically to be used with our [SDKs](/integra Flagsmith programmatically, you need to use our private [Core API](/integrating-with-flagsmith/flagsmith-api-overview/admin-api). You can find the full spec to our Core API [here](https://api.flagsmith.com/api/v1/docs/). + \ No newline at end of file diff --git a/docs/docs/sdk-api/sdk-v-1-environment-document.api.mdx b/docs/docs/sdk-api/sdk-v-1-environment-document.api.mdx index fe28e47e675d..f0deb32da2c0 100644 --- a/docs/docs/sdk-api/sdk-v-1-environment-document.api.mdx +++ b/docs/docs/sdk-api/sdk-v-1-environment-document.api.mdx @@ -5,7 +5,7 @@ description: "Retrieve the environment document." sidebar_label: "sdk_v1_environment_document" hide_title: true hide_table_of_contents: true -api: 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 +api: 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 sidebar_class_name: "get api-method" info_path: sdk-api/flagsmith-api custom_edit_url: null @@ -55,7 +55,7 @@ Used by SDKs in local evaluation mode, and Edge Proxy. diff --git a/docs/docs/sdk-api/sdk-v-1-flags.api.mdx b/docs/docs/sdk-api/sdk-v-1-flags.api.mdx index 4c45267d2939..fffc48c8cbb7 100644 --- a/docs/docs/sdk-api/sdk-v-1-flags.api.mdx +++ b/docs/docs/sdk-api/sdk-v-1-flags.api.mdx @@ -5,7 +5,7 @@ description: "Retrieve the flags for an environment." sidebar_label: "sdk_v1_flags" hide_title: true hide_table_of_contents: true -api: eJztVt9v2zYQ/leI20PaQraTrU9Cms1r0iFomgVJOgyIjYSWThZriVTJk5rM0P8+HCnHcuwOCYa9zQ+2Qd7v++47LsFUaCUpo09TiMGli9vm4DYr5NxBBCm6xKqKryGGSySrsEFBOQovIjJjhdQCdaOs0SVqGk70RA8Gg4l+c24I38TiW45aVNY0KlV67pXvMpRUW7wTX2u0D0Laec3KkaBcOYE6rYzSJL6pophoi1RbLVBRjlZI4ZSeFyjM7AsmJDgC8Xb/rXilshBZsC1Sg05oQwLvlaPXwkrWn2jKpRZSFMrtCLZ2IcbNKCjnLFWKmlSm0ArlRIqVxUQSpsOJvihQOhS1Q3E3kpUaNQejIE4K3ejnteq7w/X/ozuhtCOU6RAiqKSVJRJaB/HNErQsEWLosoEIFPfA12urM+eyRGE20ycj5kj+yJEkvocIXJJjKSFeAj1UbN+RVXoOEZRKn6GeUw7xQdtOI7DoKqMdOpb+cX+ffzbdQgSJ0YSa+E5WVaESj6XRF8cCy2130lrJ8SvC0vXOQzN3QK6y6FCTW/edkSderdL0ub0WASOYitmDT/kDw7Pkxl0df/TVtYx07gZ7XVV1K6UNh2sjnXwkUswUu5HEkPYALLDBgl08TWXTpUp76SpNOEcLbdT1+Wk/2pW57UahrkuIb+Dqenx+PL48hgg+fT67Pv1jfHk6vj6Badty877WymLKgiqFzk1ndNqyFTkrsB/TzJgCpWbXXbq3vri3jSxqH4mui4K1ICZbYwRG4++ZB+tWWjusbqW4FegqpqiH+l2hTFv/icBhUltFDz6GkzUJifHFqfiIfD5lKBPTWXzD9AbTCEqk3DDdzdH3STLoYTW3ntlGPCtom9U01raAGHKiysUjlhxmK3AME1NuAXcNnffGIsfjK7BpBtM5Dl9i6ySdd7am6+SveMYCxnaWYD17leKDjklylCnaFTJi+HPQ0x4EwSdxGMvT9EiMbigOpcgtZu/2VimlJnGb6YySQvE8jSw6+qGqZ4VKBrJSg0cze0cflE6FqUmUxuLhSB4NGYWfpCO0L05kXFNurPrLM9FWEi+P2KpGEj4v5Jl0KuEAetGyoxXz+olgGT/gZoH6ifC/Se2a7Q1m0jE/1ZTzmgl8HFbYatREZTFT92ISNCYAPEtKZ8YHoognvIc6BlwEPArBT3PwfYjuuQB4qVOPlfHFqRuK9zkmC1+tZ5R/72jtOjWJfxj4LEKVw86Rid85WErFE+XqqjKWftkcpDaCQiWoXWCvUMNfr47FWXcawXoZh6vBT4P3hawd+ppUxlEpdU/bpQvRHIidD6Tlehv+/1b6b99K3bQQ3tOoKqTyW8uT67Kj8xseJYYtg3XVLib/3Dji6+WSJ+WzLdqWj8PDiqk+Va5bjZksHP5Dk5//7NoZ74JJrbfquj0Lnt0baVXYtTe8rjsm4PiC2jhJsKKe1tbzq+1vut9OriECuUU2C0823Z/eJpf6oWd7124IYfB3b7Vvqi2Xgc7a9lE+XH1X45HwgjTXiZf935EtXUI= +api: eJztVt9v2zYQ/lcI7iFdYVvx1icjzeYl6RA0TYvELQrEQUJLJ4uNTKokpcYz/L/vjpRsOXKHDMXelgfHJu/3ffcdV1wXYISTWp0nfMRt8nBXDe/SXMwt7/EEbGxkQdd4eQXOSKiAuQyYF2GpNkwoBqqSRqsFKDeYqqnq9/tT9fJSO3g5Yt8yUKwwupKJVHOvfJ+CcKWBe/a1BLNkwsxLUu7hrbRoLim0VI59k3k+VQZQFp1IVEV3zKKZHJiefYHYMYqAvTp8xV7INEQWbLNEg2VKOwaP0rqfGaaJ+lPlMoxYsBwPu8GWNsS4G4XLKEuZYIgylRgEXidQGIiFgwStfMhBWEBtzC0ShYyqYRTEnQQb/bZVfX20/X58z6SyDkQywGIXwogFODCWj25WXOEPLHqdDd5L6oGvV6czlyjL9G76TrM5OH9kHYaJ96hn4wwWgo9W3C0Lsm+xp2qONwupLkDNXcZHw/X6tscN2EIrC5akfzk8pH+7blEr1sphOnQniiKXscdS9MWSwKrrThgjKH7pYGFb56GZeyCHRbbowG77TshjL5o0fW7YXI8RSNhs6VN+Q/BcUOOuT9/66hpCOnWDvDZV7aS043BrpJbvYddTSW6EI0h7AOY4Ejm5eJrKrkuZtNJFWMEcDF/36j4/7ce6MddtFKhygQjh15Px5en46hSP3n28mJx/Gl+djydn/Ha9puZ9LaWBhATRc+2mNnq7JitilkM7ppnWiGJFrut073xx7yqRlz4SVeY5afGRMyX0uFbwPvVg7aS1x2onxU6gTUy9Fur3hYKK9Idohrg00i19DGdbEmLjD+fsLdD5LUHZEZ2hA6Q3jj9xyjJNdIcD4gePQM+bufXMFtGsgKmaaSxNjiKZc4UdRREkcxig+CBtEDKI9aKD3i1+zlCBguIUTRP1NQ1HAMfe2LdDU0g6qCkgQ77AGjfI4Z/7Le1+EHwSB3IkjsGG0eyAHQmWGUhfHzQpJTq2u+lEcS5pECIcCPdTUc5wuvsYSn9j5uD4jVQJ06VjC23gKBLHA4LPO4GkZv51IuMS22LkX55C9iYxTpClvN0fSsXICsH0vFxmwsqYImulQY4aLvUYJxk/svoB1BPhH8l5Qvb6aJ4YByVpcQSGDUupGR7kIuSlRzYNGlPOaTqkSrUPRDqa2RYcCYk9TuAOfqrh97F7YNkJFgQXYOJBhLpY9JMM4gdfrWeUH2u7cY23ftX7LEKVwxYRsd8iuC4kjZoti0Ib9/vuhGFWiELAreT5KNTwj+tTdlGfYtab9Rqu+r/2T3KBm9nXpNDWLYRqaSMnsGrI9j55Vtv99v/r5799/dTT4uDRRUUupN9DnnVXNUHf0CgRbAmsTbuIzjPsKV2vVjQpH02+XtNxeCoReSfS1ssuFbmFf2jy8x9Se+N9ILZrLa96c3JP+5UwMmzPG1rANRNQfEFtHMdQuJZW50G1bu+uP88mKCs6ZPPgyab+0trNQi1btvctjRAGfbaW9a7aahXoDCvcyIer72psCC9IU51off8Ns7BNQg== sidebar_class_name: "get api-method" info_path: sdk-api/flagsmith-api custom_edit_url: null diff --git a/docs/docs/sdk-api/sdk-v-1-get-identities.api.mdx b/docs/docs/sdk-api/sdk-v-1-get-identities.api.mdx index 36beebfdde58..87994be262cb 100644 --- a/docs/docs/sdk-api/sdk-v-1-get-identities.api.mdx +++ b/docs/docs/sdk-api/sdk-v-1-get-identities.api.mdx @@ -5,7 +5,7 @@ description: "Retrieve the flags and traits for an identity." sidebar_label: "sdk_v1_get_identities" hide_title: true hide_table_of_contents: true -api: eJylV21v2zYQ/isE9yEtINtx96GA0AXzEmcwkr7AcYMBTuDS0slmLZEsSXnxBP334UjJkt/SZMuXOPS9Pnf33KWgUoFmlksximlITbyarfuzBdgZj0FYbjkYGtAYTKS5Qjka0jFYzWENxC6BJClbGMJETKxm3BqSSE2YIJX+pksDqphmGVjQhobTggqWAQ2pl0g4aBpQjoZ/5KA3NKAafuRcQ0xDq3MIqImWkDEaFtRuFKoaq7lY0IBmXNyCWNglDftlGWxtW82E4SDsvukDU3MpU2DCJZmwPLU0TFhqoCwfMRCjpDBgUOHd+Tn+2sWCBjSSwqKnsKBMqZRHDs/ed4MCRcvjrua3HlO8t+73GqR730jtsfsgHsQYlAYDwhoHdQ0piTQwCzGRmuQqxo8BYakUC/I3t0viqoBlQeyrNOX8O0SIhtJYclfXsGjX4Ai6ltsUH0aNVBlQZ7olzrRmCC23kJnDPFtJMGK4WKS+acibBJjNNRBjmYW3RIPNtYCYzDcu3Wv0k2FCd1c3P0+lsvaTABqjlXxAYkg4umWWKC3RNklhDelL0GvBwIWFhevlBjaEy3fkaXA/4fdl7aqgLE0/J25O9jVA5BkNp/RuMvh0NRhf0YB+/Ho7Gd0PxqPBZEgfG6OTjYKr9++HqFHuvdOybI/YFNOowqyiaClcV6iW6J7NU4iPzk4tPqxksE285sxVd7Zmae7TE5vd9GrccHr37LaeKhBaLyJP053cqlDJHTok987hfqp1kzTZHA+0Zfa+jz3jKlQ7cgOAD47x/uMorGDTcc6IYlwTZoyMuBtrN8R7FPp8I7pAZivYPNdoExQiN7DZhv5MVY6UQOTZfLdO7dJl7Klm4nfn5+fBKwrnAztesCaz3Zj31dv1mfiyHLZ5a994EtuWcKfeoy0hjys2piX+BNRAlGtuNw6poVhzLUUGwpLBl5FDNpw+uswcQ05xn6LpDOxS4n5dgKsdQ5ToEf7HBQV6XS/KXKc0pEtrlQl7KN5NavrqRjI7WMwNuV1KDRiUw33XDMQL6L7G1jBeVLYeGwTucKv55juKQzMSit+46rk1vAQWO/yrPf1Xp6Xd8YJ7cUiN/E9AxEpyYU2XfGBkqSH57axOKZaR2U2nF6W4/U1Pg7G/qHye8qjDFO9szZxdXHMRE5lbkkkNH3rsootN9JEZC/rViQxyu5Sa/+N2/0ESr49Y8zWz8LKQ58zwCANoRYuO6nPHzTPKuCGRKxB7wv8ntQna68yZwQ2a2yX2sr+API/VE0iUhoQ/kQev8UDdfHKRSBdIm1pd12HDBRRHwftZ90+36JnxDY9XKPbK4MvIdMnlEqKVQ+sF8J9dNK5jGeXYjy4Lj7K/8ljkrjzIGMeJMrlSUtvfdwepDGjKI0DWCLf36B93V+S2eg12ri78qvNr5zJlufH0p6SxGRMtbROvyLpPFmDJ6bO8aA7R11/oVSNYeLI9lTKOxO95o6joaopdghXpbxOookCGW0pjUaYosBO+6rQs8dlf3UhlMTfV9eCu62difzOuOuYtORWYW3S7fF5tMuoI78CZV2j/U9DIP+IfmqOCo++gHgAM2ysOoghUW+vgzi/bLP/ncEIDyg5mzG+x6kNr1zKxadk+Rok+jJVb3SfUisJPcVlu5f1XJzW2c17BiVmUZfkvdnLPlw== +api: eJytV1tv2zYU/iuE9pB2sK16eyhgdMW8xBmMpN3guMEAJ3BoibbZyJRKUl49Q/995xxKFuVLmqx7iiWd2/eda7ZBmgnNrUzVMA56gYkfp+vudCHsVMZCWWmlMEEriIWJtMxQDqRGwmop1oLZpWDzhC8M4ypmVnNpDZunGh5Zqb/pgHrGNV8JK7QJepNtoOABzDiJuRQaRCQa/pILvYEHLb7kUguIyOpctAITLcWKB71tYDcZqhoIQC1AciXVtVALuwx63aJo7WxDLMpIsL9v+sDULE0TwRWBnPM8sUFvzhMjiuIeAzFZqgxwAAo/vXmDf5pcgF6UKoue4BvPskRGxGf42aDA1vPY1HwIeSbDdTesmQ4fWOWxc6fu1Ehk8AxfDVFdUcoiLbgVMQOm8yzGny3Gk1Qt2N/SLhllAdOC3Jcw09lnESEbmcaUU14hJC8HR9gFZwm+GNZSRSsg054415ojtdKKlTnE6YHgzIDhxBUNezUHFLkWzFiA8Bqgw5MCWLMNwb1EPysEdHNx9W0opbVvBFAbLeVbDPIu0S23DCyibZZAdSfPYc+jQUIVLKiWa9qQLleRp8n9iN+LyhXUUJL8Mac+acL4kT3cjPsfL/qjiwfWZtXvOwUfPny6Hg9v+6NhfzzAj/5zjWLnWqh8BR6Cyga8amjc19GNQfXi7dsBahR77wPoOK9XJ8hHibf06Slclukp0D2fJSI+2oSV+KCUwXpzmlMqk+maJ7njSW1KnvYSgGNgz673qiTBe6PyJGlgK0NlN+iQ3ZLDfahVtdVojgfqmb3tYvFRqitH1En4gkbnf+ypR7FpkzOWcQmz15g0kjQfaBrszeKnK5oCmYLFpyp2jELsCoSq0F+WFail2f+RJxfH8fzUQJoh7qv76Ri7LBxWtben3PDbZayR3uFukI/KKQ62CjRnRJRrSAARM1BrqVO1AmHW/3NIRPYm94SMJusE9zCahp25THEvw0KmNYp7LjiyN3CxCb2uFmyuE5BbWpuZXhiKeCE6oNOZV7OvE6Wrg61eT8YBKGBkRHYV+g2uMVckRwHUpZvJK6Kd9u5S8JiIKxfzX21Pu+0E9+KArQYDnwkVZylUj+mwd5wttZj/clZBitPINOGEUYLr3oTQF/aHLJ/BHm5DKO2dmbP3lxKulDS3bJVq8S7k7zuY/Q/cwGXyYiD9HHKj5T+07I+C6MdwnZDd74Ki5Rqa+XlYZtzICCPzYKCj6vChXkMZKvv0Uag94e/BPEZ7bTCPuxQksTrdLeQGUdVTsGVh435ld07jLqCOk2qeUiD+bKRyxEpsBVjczs+6e7p2zww7B0LoHsUiAl0g/Xwpokdi6xn0A7c71/A1x0IlFI5ld+/xiO49OOwktprJsyzV9tdmhwEqqEKBc6C3u0x/u7lg1+XbVuP+wk/tn9vnCc+NG2hZauyKK08bBgNbdxnMA3b6QN/WJ+nLb/WyEKz4asMs4RKHshso23IATbBKMCPdHYAyCpxZS4gZZbZbrIRPOikKfO3ub7pqpCnXP93ZT8T+alRWzGt2KjDaVM0JXa6igFbHgTOn4P97UMvf44OWqEADuVU1AIbtFPtRJDJf6+DiL/y5/ftgDLL8oMfcXip/eMsStqdn+9isdGE80u49obbdui4G4it59+mkxq7PSzoRBeytfwGMcM+d sidebar_class_name: "get api-method" info_path: sdk-api/flagsmith-api custom_edit_url: null @@ -62,7 +62,7 @@ Retrieve the flags and traits for an identity. diff --git a/docs/docs/sdk-api/sdk-v-1-post-identities.api.mdx b/docs/docs/sdk-api/sdk-v-1-post-identities.api.mdx index 05f08bf9135b..523b2e692d55 100644 --- a/docs/docs/sdk-api/sdk-v-1-post-identities.api.mdx +++ b/docs/docs/sdk-api/sdk-v-1-post-identities.api.mdx @@ -5,7 +5,7 @@ description: "Identify a user, set their traits, and retrieve their flags." sidebar_label: "sdk_v1_post_identities" hide_title: true hide_table_of_contents: true -api: eJztWNtu2zgQ/RWC+5BdQLaT7kMBoVusm6SA0VsQp8UCTpDS4thiLZEsSTlRDf37YkjJlpy4cS8LFNi82dLM8MxwzhmKK6o0GOaEkiNOY2r54np5dK2VddeCg3TCCbA0ohxsYoRGQxrTkX81KwkjhQUTEQuOuBSEIc4w4WxEmOTEgDMCllC/mmVsbvs0ogY+F2DdC8VLGq/8X2GA09iZAiKaKOlAOnzFtM5E4vENPllce0VtkkLO8FcX1McB02KwPBpsgA8+knqt/qW8lO8tcOLUBpdHRGbKECZJ7VZ66NYpA0Q4WyeEsF2pgcZUTT9B4mhEtcHi+QLFKxrcZwIM/qttrTNCztFXuAw2lUOrKqIhtk9Ulu9mNJ6sqHCQ27vZnYM2YEE6SxhZQNlbsqwAollTc6KNWgoOnDBLhNSFIzcpSJIYYE7IOVGGFJqH3610H87Mh79eQPm1xC48hldQrvO69gi7ydXeU6UyYJJW0fqRLPKpL8r6iZAO5vWjnN2+Bjl3KY2fHB4eRlswOnGyjFZX28A+eCwBmrSiaa+9gN0NWEeoqqjVvJNWobol2EYzwt3xYMISzBhWPpyE/a/xt1q4Zf/haLQm1Hlgk/dsc/O2d3Nz05spk/cKk4FMFMeQj2R9JOsjWX8FsuZF5oRmxg08STlz7JGej/R8pOevQM/ga7WSNnTJk8PDu11Lf/rJOKzo6dyihEthw1/f8cDXDQ88IixTck5uhEs9qdfH+p/PaR+6ZR42N9qL11bIeRZkifw+A+YKA8Q65uAPFK3CSOBkWvp0X+I6OSY0Pnn1cCp1tAcAbILW9hHhMBO4LPMKg7FJBkvI9qleqwwNm9tlw3JJlsPXivsW36+psqIsy7otv/YAWeTYxeOL4duT4fkJjeib968vRh+G56PhxWmHhaWGk6dPT9Gj2np+DytoDbNG0XJ4WVe1wuXZNIN2yg0ZN+antQ22SfC89rv7Falsq+Buku+hgzVUMsYFGz3cSrVpkk029wPtqAP2jN+hZiFPgM50+w4qbI04Zq1KhKe1J/H/dYB958Rp708zS3aLfyNi6y3cOQ2CGvtxUEXUQlIY4UpfqVO5FEbJHKQjw7ORr2w8ufKZeYWc4M0Nhs7BpQpvcvAKBzePYZnoPQOA4hpmCcb6JQqT0ZimzmkbD9C8P2v0q5+o/M4V0EbdjvF0Nzwb+cJ3wwCfQ/9bYp3yeR3ralOCMY610H33FmLDCS1e+e0TGDUFxv0GBFmk//Ra3r1guIVDGRwABCTXSkhn++QZI6mB2V8HTUpcJbabziDJ8ARgBwas+00X00wkPaZFbx3m4PlLITlRhSO5MvBswJ73sYveMOvAfHMiw8KlyogvfvjfSeLbERuxZA72gzxlViQIoIUWF8Ju8tuEhEYbzxK1ALll/COpXWC83pThpwcrXIq9HI5AQcgaChJtYCZuyWXwuKSeoHhKOt/cPJ7eslxnsH00aYlZLbmTjuhtvW90Ldxctg6U+MDzc+sRJj5TviBtjffdj40fUaRkyHd5tJsqBzYQDz+wsGeHZyPbJ8cpJAu/a3u0wcHzzdJcJQXywlcz7HY4brLEHzchZwKZbQutlXF/dwldRTQTCaB8xatmL1+MT8jr+mnUrfGL8Unvz95xxgobdBjVKmey5W35giyPCL4gu2+iV5sj8Y9eStf96eDWDXTGBA6kIGerWkUn2Ly4QUfrfGpMqLwpCm48oasVNuh7k1UVPv5cgPFiHdElMwJPAl66o6b3sb9CZx2HVHr+5ITmvrP2uGdD4Q0hhkkC2u1w9p8JVXtInL0bX9CITuuL+Fxx9GlFjtp/Amx2h89hZNY/WoOdybKF5D75DaAX0Plg67qtVkExqmptv6y/P3d4rDUlWONGXlVV9S+yWqHx +api: eJztWFlv4zYQ/iuE+pC2sOykfVgg2C7qzQEYeyLHokCySGhpHHMjUSpJOXEN//fODCWLcpxN9ij2oXmTyLk53zeUFlFRgpFOFXqURruRTa8vZjsXZWHdhUpBO+UU2KgXpWATo0oSRLERb03mQorKgukJC064KSgjnJHK2Z6QOhUGnFEwg3prkskr20djBv6uwLqXRTqPdhf8qgygf2cq6EVJoR3apy1ZlplKOL7BJ0u+F5FNppBLeuoGdTmQpRrMdgZt4INLUfvqn+tzfWohFa5o4+KIxKQwGK6o1eYcunWFAYGZ1AlR2G5eAvopxp8gcfheGioeFwiD8eoTBYbealmLjvQV6SqXQVs5klriKtvmRPX83STaPUM7DnJ7N7sjKA1YVLZY9GuYxzOZVSBK2dRcYDgzDCIV0gqly8qJmylokRjA+ukrgVlWZeqfg3QfzozNX6DPzyV2wjG8QqEmrwuOsJtcra3wgK+4BKslXeXj7sq4KDKQOlyqvXbUsixaflyP4wO79pFoq5puWo9jg4tNBmsLy2Uv6NWzoC7djNejGdFhcDDehTRGzh9Owv7X8QcdG8h/2Bmt8HPkwcOaIRRv45ubmxhxk8eVyUAnRUomn7D5hM0nbP4AbOZV5lQpjRswJrGR5BMan9D4hMYfgEava8tCW98Uv21v323S6Ltfc71HRm+AALx5t3DlBse2b/obUrynZwV2+Y1yU8bw6o7+/SHMpgNxf7i9R8HYouHMs5D4eYJZVMg51mEKvxBHVUZjWuM5p3tIfnJK6Hj/1cOp1NYeCKA1Wsv3RAoTRW4lEwrZFhlSZfaY6gVlaBAelo3KpWUOnyvuW9pfQQV7KMvqlu+m8au4PD4Zvt0fHu1filg0z+caN96cvj4ZfRgejYYnB7QZvrdZrFwDUg/BobGBSx2NEEuouv/s2QFpLNfWN8ArqvOtfQYKh/XxLMm9HGcQ1q5BdSt+UMtQv3nNC26TL6PYryPUOlRxTA4bYl1Ltem2NpvNgXZohpqPj7pxxEjqTMWvwNTaaJTWFolifmA2+J8Mvq+cVOFxNDPo/qHRkN/qxO6dIp7FeYygOQtJZfAAuDAHeqZMoXMUFsP3Iy7k7tlHzoyZ9Yx+35DpHNy0oN859B+Hzkq6Kb5tGBwR+TAzMJZd4Mccyk2dK+3uYADpFfRRpz9pyK+fFPmdn0EtNR6gAoXG1W5iP6Y55rtkYwZt75bqFdddkdUpyJQr53kw+isOtGMvuBYHjjVkfAE6LQtsH9sXz6WYGpj8sdWklBaJ7aYzSDIa+XaAwHA/ldUYB3GMocQrM1svDhXecwu8JuZ41X0+kC/6dPxvpHVgvjiRYYWHY9Q/PO03JjFMc6XZ7jelYtQM0fy4XMbSqoQiC9IgR9QffH4ENpLhvi+uQa8Jf0vOJ2QvRvM0TFGSutNfhjwTNaDCMYsj91ace43ziCFH96Wj9ofiwa3MywzWLykBG9WcedZhrbX9hpi2O/dK+j3JcFtboqwnBVcjZGjGBMGhFxHCfLKznfsBtGXFHn1M0WcVdTLq4snvTSG55iN7RA/gAa9c425FaOFS+qP2t06Z8K0Tr5eK8G6rsiyM+7MLc8wKoQDERihbH+TL433xul7tdQuMW/Hv8V4mK+tplcgnlzrQRnoSsx1BG6IlofV6LNqb8bf+aK6b08GtG5SZVDQpPMktalI8o86lA9pZ5VPHREQ6Jf5EmcWCuvPUZMslLWOzGeZe1JNG0RxnJu41jU/N5dtqz6cS872HxLmtHvEzjQaYNzFMEijdPcr8tbAMOf/9u+MTFB7XP9dztIargeVe+OLDlnfA7Cdg/RCMZZzTQSSbSNkHfQ2d77au2mLh6QKr2cjP6s/QezRWhOKl6SA/4oT8F3jekSs= sidebar_class_name: "post api-method" info_path: sdk-api/flagsmith-api custom_edit_url: null @@ -54,7 +54,7 @@ Identify a user, set their traits, and retrieve their flags. @@ -62,7 +62,7 @@ Identify a user, set their traits, and retrieve their flags. diff --git a/docs/docs/sdk-api/sdk.tag.mdx b/docs/docs/sdk-api/sdk.tag.mdx new file mode 100644 index 000000000000..6054440b1ab1 --- /dev/null +++ b/docs/docs/sdk-api/sdk.tag.mdx @@ -0,0 +1,20 @@ +--- +id: sdk +title: "sdk" +description: "sdk" +custom_edit_url: null +--- + + + +SDK endpoints for flags, identities, and traits. + + + +```mdx-code-block +import DocCardList from '@theme/DocCardList'; +import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; + + +``` + \ No newline at end of file diff --git a/docs/docs/sdk-api/sidebar.ts b/docs/docs/sdk-api/sidebar.ts index 3e7f8ba09c0b..5cf89b78f4cf 100644 --- a/docs/docs/sdk-api/sidebar.ts +++ b/docs/docs/sdk-api/sidebar.ts @@ -9,6 +9,10 @@ const sidebar: SidebarsConfig = { { type: "category", label: "sdk", + link: { + type: "doc", + id: "sdk-api/sdk", + }, items: [ { type: "doc", From 05459eece41c11c918b57c471004aaa401aa517a Mon Sep 17 00:00:00 2001 From: "Nattie C." <47332368+nattiechan@users.noreply.github.com> Date: Tue, 7 Jul 2026 18:53:58 -0700 Subject: [PATCH 7/7] docs(edge proxy): Fix typo --- docs/docs/deployment-self-hosting/edge-proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/deployment-self-hosting/edge-proxy.md b/docs/docs/deployment-self-hosting/edge-proxy.md index 459b589f0d8e..110f57dc2d52 100644 --- a/docs/docs/deployment-self-hosting/edge-proxy.md +++ b/docs/docs/deployment-self-hosting/edge-proxy.md @@ -101,7 +101,7 @@ corresponding client-side key. #### `api_url` -The URL that edge proxy uses to retrieve the environment document, and poll the Flagmsith API for changes. Defaults to `https://edge.api.flagsmith.com/api/v1`. +The URL that edge proxy uses to retrieve the environment document, and poll the Flagsmith API for changes. Defaults to `https://edge.api.flagsmith.com/api/v1`. If you are self-hosting Flagsmith, set this to your API URL: