Hi everybody! I am trying to send and access additional data aside from a text message to RASA via a REST call but am unable to do so. The following is the usual request body for sending and receiving text messages: { “sender”: “default”, “message”: “hi” }
I want to send some and retrieve some extra data and have tried the following request body. { “sender”: “default”, “message”: “custom payload”, “data”:{ “someData”: “some data” } }
I tried to find it in the tracker object but have not found it.
So far I have failed. Is there a way to achieve this or is this a limitation currently? Thank you for your time.