How to force a entity though post request using rasa rest handle

{
    "message" : "/EXTERNAL_dry_plant"
}

How do I send the entity name while also injecting this trigger intent?. I’m using rasa X with the rest handle.

Try:

/intent{"entity_name": "entity_value"}

It worked, I had to escape the sequence for all the double quote while specifying it in json so it would look something like this { “message” : “/EXTERNAL_dry_plant{“entityname”:“value”}” } Thanks!! @ChrisRahme

1 Like