发送语音消息
调用SendVMSMessage API以发送语音消息。
请求参数
参数名称 | 类型 | 描述 | 是否必需 |
---|---|---|---|
Action | string | 值: SendVMSMessage | 是 |
AccountId | int | 项目ID,获取AccountId。 | 是 |
TemplateId | string | 语音模板ID。 | 是 |
CalledNumber | string | 被叫号码。 | 是 |
响应元素
参数名称 | 类型 | 描述 | 是否必需 |
---|---|---|---|
RetCode | int | 当RetCode不为0时,将在Message中显示具体的错误描述。如果RetCode为0,则不返回Message。 | 是 |
Action | string | 操作名称。 | 是 |
Message | string | 当RetCode不为0时,将在Message中显示具体的错误描述。 | 是 |
SessionNo | string | 此会话的提交任务的唯一ID,可用于查询此会话中的发送列表。 | 否 |
请求示例
curl --request POST 'https://api.uspeedo.com/api' \
--header 'Content-Type: application/json' \
-d '{
"Action": "SendVMSMessage",
"AccountId": 1,
"TemplateId": "template id",
"CalledNumber": "+11111111"
}'
返回示例
{
"Action": "SendVMSMessageResponse",
"Message": "Send success",
"RetCode": 0,
"SessionNo": "session no"
}