Feature flags not showing in created Organization

Hi, I'm testing creating an Organization using the Kinde Management API. In the JSON body of the request, I'm adding a feature flag that I want to associate with the created Organization.: My JSON request body looks like:
{
"name": "Acme Corp1",
"sender_name": "Acme Corp",
"handle": "acme_corp_1",
"feature_flags": {
"test_12": true
}
}
{
"name": "Acme Corp1",
"sender_name": "Acme Corp",
"handle": "acme_corp_1",
"feature_flags": {
"test_12": true
}
}
And the response from the API looks like:
{
"message": {
"code": "OK",
"message": "Success",
"organization": {
"code": "org_4429687xxxxx"
}
}
}
{
"message": {
"code": "OK",
"message": "Success",
"organization": {
"code": "org_4429687xxxxx"
}
}
}
When I go into the Kinde UI, I see that the organization is created successfully but when I look at the feature flags, I do not see anything. I see the message: "There’s currently no feature flags that can be applied for this organization. You’ll need to set them up for your business first." But I have the feature flag "test_12" setup in my business under Releases -> Feature flags Can someone please point me what my mistake is in the request ? Thanks.
No description
3 Replies
Abdelrahman Zaki
Hi Maxom, Thanks for reaching out. Based on what you’re describing, here are a few things to check: • Please verify that the key “test_12” in your request exactly matches the feature flag you’ve set up in your business settings (under Releases → Feature flags). Even small differences in spelling or case could cause the flag not to be recognized. • Sometimes, feature flag settings provided during organization creation may not immediately appear in the UI. It’s possible that the flag values are stored with the organization but aren’t rendered until an update is performed or after a short delay. • Currently, the Management API may not automatically “apply” feature flags to an organization upon creation—even if you include them in the request body. In this case, you might need to update the organization via the appropriate endpoint after creation to set or activate the feature flags. I recommend double-checking the flag name and trying a follow-up update to see if that makes the flag appear in the UI. If you continue to experience issues, please let me know so we can investigate further.
__maxom__
__maxom__OP2w ago
Hi, thanks for the update. I did some troubleshooting and I realised that I set the feature flags to "Do not override". Changing that to override in organizations fixed the issue.
Abdelrahman Zaki
Hi Maxom,

Thanks for the update, and I’m glad to hear you were able to resolve the issue. It looks like the “Do not override” setting was indeed preventing the feature flag from being applied to the organization. Switching to “override” allowed the flag to register properly. If you have any more questions or run into any other issues, please feel free to reach out. We're here to help

Did you find this page helpful?