RASA Webhook API Body

Usually I given input inside postman body like this

{“sender”:“jitesh”,“message”:“Hi”}

After that generate some output like this

[ { “recipient_id”: “jitesh”, “text”: "Hi how are " }]

But I want to generate some output like this

[ { "recipient_id": “jitesh”, "text": “Hi how are”, "id": "1" }]

how can I do this???

In order to help you I might need to know a bit more about your use-case and what you’re currently running.

What service are you running? Are you running Rasa locally and sending custom requests to it? Are you sending this to the NLU service or to Rasa? Also, what is the reason you’re interested in the raw request?