有没有办法使用 twilio autopilot 发送自定义参数以及重定向操作?

Is there a way to send custom parameters along with a redirect action using twilio autopilot?

除了 twilio (https://www.twilio.com/docs/autopilot/actions/autopilot-request) 提供的参数之外,我还想将自定义参数与我的重定向请求一起发送 - 我在文档中找不到任何内容。有谁知道我怎么能做到这一点?还是通过 URL 是唯一的途径?

{
    "actions": [
        {
            "redirect": {
                "method": "POST",
                "uri": "https://my-node-app/params/1"
            }
        }
    ]
}

URL 如您所述查询参数。

https://my-node-app/params/1?param1=x&param2=y&param3=z