I want to maintain some flow specific custom information insight context in a json object , and i want same context back from bot response while communicating with HTTP API.
Response:
[
{
“recipient_id”: “Me”,
“text”: “Hey! How are you? Message From Action”
}
]
I want expected response as
[
{
“recipient_id”: “Me”,
“text”: “Hey! How are you? Message From Action”
}
“myObj”:{
“Flow Name”:“MyFlow1”,
“Status”:“started”
}
]
I am not using any HTTP API yet, i want to check if there is any which i can leverage?
In application i am using web hook to interact with chat bot.
It will be helpful if you provide all sdk details which rasa supports for development.