Design a workflow to post response on chatbot

Hi! All

I need to fetch an employee List from a database and post it as a response on AutomaionEdge AI Studio chatbot. Please can you tell me how to design the workflow.

1 Like

Hi!

Create a main process with a Workflow Executor step to call a child workflow.

In the child workflow fetch the employee details from the database using the Table Input step and store the employee list as a Json output. Then provide a workflow executor step to call a child workflow.

In the second child workflow use an Advanced REST Client step to post the reply to the chatbot. You will need the ChatbotEndPoint URL for the POST request; and additionalInfo in the Json for the chatbot context and the authentication key.

1 Like