Alex D
Alex D

Reputation: 828

Kentico 9 get data submitted by form

My company uses Kentico 9 for some forms that emails to users on submit. Where does the data object get created to be sent as an email? I am trying to get the form submit data, serialize it and post it to an api.

Upvotes: 1

Views: 179

Answers (2)

Brenden Kehren
Brenden Kehren

Reputation: 6117

I suggest using a custom event handler on insert of the of the bizform item records. This way you can utilize all the data which is submitted with the form AND perform other activities if you need.

Upvotes: 0

Mike Wills
Mike Wills

Reputation: 66

Kentico creates a dedicate SQL Server table for each form. You can get the data via the API. Here's an example of loading form data using the Kentico 9 API:

https://docs.kentico.com/api9/content-management/form-data

Mike

Upvotes: 1

Related Questions