Change the date or location from Data table in Xo10 Platform

I am working on the Travel assistant bot . There is a requirement to update the Date and change the Location based on email . Can you Suggest me how to use update method here to update the data in table . my mail is mnr2mca@gmail.com . please reply or mail to me .

If you want to learn more about managing data tables in XO10, I suggest you review the explanation in this article: https://developer.kore.ai/docs/bots/bot-builder-tool/dialog-task/data-as-service/

When I want to update values in a table in a Kore database (included in XO10, but not XO11), here’s how I design the flow.
First, create a bot action at the point in the flow where the update should occur.

Inside the bot action node, connect a service node and define it to connect to the data table you want to change. Click on “Edit Request” to configure the fields and columns to be changed.

Select the table you want to modify and chose the action you want to take.
image

Select the column to update and define the row values for that column.

In this example, the employee name value (captured in an entity in your flow) will be updated in any row that matches the employee number (captured in an entity in your flow).

Be aware that when you click the “test” button, the data table will be updated with the provided values. Always be careful not to overwrite data you want to keep.

Good Luck!