flaky-kilobyte-10585
05/23/2025, 7:17 PMbrief-egg-61061
05/23/2025, 7:17 PMbrief-egg-61061
05/23/2025, 7:17 PMresponse.parse
option determines when the hook is executed: - If you set response.parse: true
, the webhook is called before the system creates a new identity (pre-persist). - If you set response.parse: false
, the webhook is called after the system creates a new identity (post-persist). You can define both types by adding two webhooks with different parse
values: yaml - hook: web_hook config: response: parse: true # Pre-persist - hook: web_hook config: response: parse: false # Post-persist
So, check your hook configuration for the response.parse
setting to know if it's pre- or post-persist. If parse
is true
, it's pre-persist; if false
, it's post-persist. For more details, see the [webhook response handling documentation](https://www.ory.sh/docs/guides/integrate-with-ory-cloud-through-webhooks#flow-interrupting-webhooks).