Hi, I want to pass some extra data in POST request. In Custom Connectors it is said that:
If you need to use extra information from your front end in your custom actions, you can add this information in the
metadata
dict of your user message. This information will accompany the user message through the rasa server into the action server when applicable, where you can find it stored in thetracker
.
Basic json looks like this:
{
"sender": "123",
"message": "Hello"
}
How should I append it with metadata?
Also how should I extract metadata from tracker in my custom action?
@amn41 @erohmensing @Juste @alexweidauer @Ghostvv @Tanja @j.mosig @ricwo @Tobias_Wochinger
Does anyone know the answer?