```hooks: - hook: web_hook config: (...)...
# ory-selfhosting
b
Copy code
hooks:
  - hook: web_hook
    config:
    (...)
    response:
      ignore: false
--->  parse: true
No longer supported? Doesn't validate with Kratos v0.28, but according to docs (link) it should. Prevent me from preventing user signups w/o terms and conditions accepted.
Throws with
Copy code
I[#/selfservice/flows/registration/after/oidc/hooks/0/config/response] S[#/definitions/selfServiceWebHook/properties/config/properties/response/additionalProperties] additionalProperties "parse" not allowed
d
not sure what version you’re running, as the latest Kratos is 0.13.0.. but yes, the
parse
key is supported and is working in our webhooks
b
Ah sry I posted the Helm chart version. I'm running 0.11.1.
d
ah ok, no worries
response.parse was added in kratos 0.13.0
so you won’t have it on 0.11.1
b
Ah thanks, should've checked that! We had to downgrade because of some other bugs in later versions, but I'll check if those are resolved or if I can contribute in anyway. Thanks again.
d
on 0.11.1 you should be able to set
can_interrupt: true
on the config to get what you need
b
Nice. Saved my day 🙏