获取机器人模板

请求URL:

POST/vcs_api/openapi/getProjectList.php

参数:

参数名 是否必须 类型 说明
access string 公司账号
token string 分配的唯一调用秘钥

请求示例:

Accept: application/json
Content-Type: application/josn;charset=utf-8
{
    "access": "xxx",
    "token": "xxx"
}

返回示例:

正确时返回:

{
    "code": "0",
    "info": "请求完成",
    "data": [
        {
            "id": "120",
            "pro_name": "测试项目名称",
            "ttsvoice": {
                "voice": "sijing",
                "volume": "100",
                "speech_rate": "-75"
            }
        }
    ]
}

错误时返回:

{
    "code": "1",
    "info": "公司账号错误"
}

返回参数说明:

参数名 类型 说明
code string 返回码,0为正常,非0为请求失败
info string 接口请求中文说明
data array 返回的数据集
∟ id string 模板ID
∟ pro_name string 模板名称
∟ ttsvoice object 语音参数
∟ ∟ voice string 语音名称
∟ ∟ volume string 音量
∟ ∟ speech_rate string 语速

备注:

  • 更多返回错误代码请看首页的错误代码描述