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