How i can retrieve row id

Hello Team

how I can retrieve ID of the row I created from the form and stored it in a variable ?

Thanks

Hi @Ricko,

The createXXX data source methods return the newly inserted record. It is available as the ${result} implicit variable in the Then event of the Invoke data source method action. So you can use a Set property action with Value set to ${result.NameOfIDColumn}.

1 Like