根据本文档 ( https://cloud.ibm.com/docs/services/voice-agent?topic=voice-agent-api-reference#state-variables-iva ) Voice Agent 为 Watson Assistant 设置了一些状态变量。
我想访问主叫号码 (vgwSIPFromURI) 并将其作为参数传递给我的云函数。
我怎样才能做到这一点?
这是我在 JSON 编辑器中的代码的简化版本:
{
"output": {
"text": {
"values": [
"<? $myResult ?>"
],
"selection_policy": "sequential"
}
},
"actions": [
{
"name": "/path/to/my/cloud-function",
"type": "server",
"parameters": {
"name" : "$name"
},
"credentials": "$myCredentials",
"result_variable": "$myResult"
}
]
}