create unique value as ID in data table

I have the form. when a user fills out the form. data is added to the data table of kore.ai
Table has ID column which needs to be generated automatically.
I need a unique ID in the table to be generated.
can anyone help.

Hello @lekharaj.fegade ,

In Data Tables, upon creation of a table some default set of columns are auto-created. Among those we have sys_id which is a unique id for each row in the table.

table

If however you want to generate your own id, then you may use script node to set up the logic for id prior to the form node, generate one and use that value in the data table api.

Hope this helps!!