__maxom__
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working
Additionally, my API layer interacts with the Kinde Management API with M2M tokens to perform actions. If I perform my DB operations for Kinde events from my API layer but also have webhooks enabled, then there would effectively be 2 write operations to my DB for the same event.
To your point:
If webhooks are enabled and an action occurs inside my application, that will also trigger the webhook. So there is still overlap of functionality in this scenario. It feels like I either implement the DB operations based on API responses/callbacks from my API or use webhooks but not together.
Is there a way to disable webhooks to create events if the call is from my management API but trigger them for actions outside of my application ? Similar to the error in this thread but provide it as a feature to end users.
Because if I disable webhooks, I can manage the actions from my application API's but I lose the ability to manage outside actions.
If I enable webhooks, I might face a similar issue discussed in this thread (do not know if/when this will happen again)
So I think this is the help with direction I needed. Not sure if I have made it clearer or confused you with these messages
17 replies
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working
Also, I have a question regarding the callback especially after signup. In order to create a user in my DB, how do I identify if the event was a login or a signup.
On both Signup and on login (with Google social provider signin), my onSuccess user object looks like:
My state is
kinde:undefined
My context is:
My onError error is
state is
contex is
These values are same for both signup and login with Google (I've not tested email only auth flow btw and Google would be the preferred option anyways)
How can I differentiate these events to write to my db only if it is a signup event ? On every auth attempt, do I have to check my DB every time if a user exists and if not create ?
The webhooks are working fine for user events17 replies
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working
Hi David,
Thanks for your response. I've started implementing the changes to sync with DB from my application API's.
Also my question around reliability of webhooks was mostly towards incidents where events are not being emitted similar to what happened in this chat and not in the scenarios of if the webhooks are actually working. When they work they are great.
In retrospect, I should have reworded it better. My question was what checks and balances do you have in place to identify these issues like webhooks not emitting events and what remedies are in place to fix it with minimal downtime ?
In this scenario, it looks like the faulty code made its way to prod without being detected in unit/integration tests/your review processes
17 replies
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working
Hi David,
Thanks for the update. As of around UTC time
2025-04-01T11:48:38.823038+00:00
where I tested organization creation, orgainzation.deleted is not yet working. I will wait for some more time to test this out.
Based on this experience, I have an application design question for you guys. Kinde is the centre of my application to store the true information about users and orgs.
My application is heavily dependant on Kinde providing me the necessary information as all my db tables are dependant on the user kp id and the org's org code .
Up until now I had a decoupled process where user and org interactions from my application for the scenarios of creating/updating/deleting users/organizations is separate from the processes of populating my DB i.e., the calls to populate/update/delete rows of the users and orgs tables in my DB to keep it in sync with Kinde was via webhooks instead of my application API's
With this issue, I'm sort of rethinking my choices as keeping my DB in sync with Kinde is like the most crucial part of my application working. Now due to my choice of offloading auth functionality to Kinde and its core dependancy to my application, is it wise for me to depend on Kinde webhooks (keeping in mind that in IT, there is always an assumption that things will fail, only a matter of when, similar to this issue) for populating the users and orgs table ?
Is it better to handle these DB operations from my application API based on Kinde responses so that my DB is always in sync and I can deterministically handle errors instead of depending on webhooks ? I feel I need to change my implementation to leverage this approach instead of webhooks.
This leads me to the question of how reliable are Kinde webhooks and what is the best use for them.
Need some design suggestion around approach as Kinde is core to my application and I should have a deterministic way of handling things.
Thanks for the help.17 replies
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working
This is Hono on CF Workers
17 replies
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working
In the console output you can see that the
organization.created
event timestamp is 2025-03-31T12:28:00.778346+00:00
. This matches closely with the first request in the output. The second request in the output is a similar test of create + delete but you only see one event which was for create (The logs shared in my previous messages relate to the first request in the output)
Below are my console outputs for ngrok:
17 replies
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working
Console Output:
As you can see there is no
[wrangler:inf] POST /webhooks/kinde 200 OK
after the DELETE17 replies
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working

17 replies
KKinde
โขCreated by __maxom__ on 3/30/2025 in #๐ปโsupport
Webhooks organization.deleted event has stopped working
Iโm currently writing the code to sync kinde events with my db. For this, I have created multiple dummy orgs and deleted them using the kinde management API.
Iโm not seeing any delivery logs.
This is a new webhook that i have created. Previously to test the webhooks functionality I used another dummy endpoint using ngrok and in those tests, the organisations events worked fine.
17 replies
KKinde
โขCreated by __maxom__ on 3/19/2025 in #๐ปโsupport
Kinde Management API with custom domain
Thanks
8 replies
KKinde
โขCreated by __maxom__ on 3/19/2025 in #๐ปโsupport
Kinde Management API with custom domain
If I create a new API with the custom domain, I can get the token without adding the scopes but I get unauthorized errors when trying to access the management API. It does make sense because it does not have the scopes in it (similar to the scopes present in the one Kinde provides in the default management API). Thanks for your response though. Appreciate it. Will continue with the Kinde domain itself.
8 replies
KKinde
โขCreated by __maxom__ on 3/19/2025 in #๐ปโsupport
Kinde Management API with custom domain
KINDE_OAUTH_TOKEN_URI (/oauth2/token) with custom domain works but KINDE_MANAGEMENT_API with custom domain does not work. If I create an API with the custom domain, I cannot assign any scopes until I upgrade to the plus or scale plan but I'm not sure if it will offer the scopes provided in the default API
8 replies
KKinde
โขCreated by __maxom__ on 3/19/2025 in #๐ปโsupport
Kinde Management API with custom domain
Error I get
8 replies
KKinde
โขCreated by __maxom__ on 3/1/2025 in #๐ปโsupport
Adding an existing Kinde user to a new organisation
Thanks Peter
93 replies
KKinde
โขCreated by __maxom__ on 3/1/2025 in #๐ปโsupport
Adding an existing Kinde user to a new organisation
This or get users
93 replies
KKinde
โขCreated by __maxom__ on 3/1/2025 in #๐ปโsupport
Adding an existing Kinde user to a new organisation
Iโm still confused by your last couple responses but all good. I understand what I need to do to cater to my scenario.
Thanks you all with the support
93 replies
KKinde
โขCreated by __maxom__ on 3/1/2025 in #๐ปโsupport
Adding an existing Kinde user to a new organisation
are you referring to how to login a user to a different org ?
93 replies
KKinde
โขCreated by __maxom__ on 3/1/2025 in #๐ปโsupport
Adding an existing Kinde user to a new organisation
Sorry Iโm a bit confused with this response. How does it relate to the issue in this thread ? The sub in the token would be of the user who is trying to add members right and not of the users we want to add
93 replies
KKinde
โขCreated by __maxom__ on 3/1/2025 in #๐ปโsupport
Adding an existing Kinde user to a new organisation
Iโll probably do a db interaction first and then do kinde api checks as fallback
93 replies
KKinde
โขCreated by __maxom__ on 3/1/2025 in #๐ปโsupport
Adding an existing Kinde user to a new organisation
As I populate my db using webhooks, Iโm just afraid there could be scenarios where my db is out of sync sometimes with Kinde as interacting with Kinde is mainly apis and populating my db with users is using webhooks. So that is why I was trying to rely on Kinde apis to do my checks and balances
93 replies