In the Webhooks API, what are the "complete" events?
-
In the Webhooks API, I see there are similar events with a
.completesuffix. What are they for?user.createanduser.create.completeuser.updateanduser.update.completeuser.deleteanduser.delete.completeuser.registration.createanduser.registration.create.completeuser.registration.updateanduser.registration.update.completeuser.registration.deleteanduser.registration.delete.complete
-
Those events without the
completesuffix are sent before we commit the database transaction and the ones withcompleteare sent after we commit the transaction.This means that the actual entities (user and user registration) don't actually exist when the first non-
completeevents are emitted.Take a look at our Calling FusionAuth APIs In Webhooks guide for more details.