获取客户跟进类型
请求方式:POST
请求地址:/api.php?r=asrcall/customer/followup/type
请求参数:json
{
"token":"b9f43e6f11e111ec906b00163e1260a0"
}
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| token | string | 是 | 认证码 |
返回值:
{
"statusCode": 1,
"message": "success",
"info": {
"list": [
{
"id": 0,
"name": "未处理"
},
{
"id": 2,
"name": "跟进成功"
},
{
"id": 3,
"name": "未接通"
},
{
"id": 4,
"name": "需再次跟进"
},
{
"id": 5,
"name": "有效客户"
},
{
"id": 6,
"name": "无效客户"
}
]
}
}
| 参数 | 类型 | 说明 |
|---|---|---|
| statusCode | int | 状态码,0为正常,其他代表错误 |
| message | string | 成功失败提示信息 |
| info | string | 此处为空信息 |
设置客户跟进
请求方式:POST
请求地址:/api.php?r=asrcall/customer/followup/edit
请求参数:json
{
"token":"b9f43e6f11e111ec906b00163e1260a0",
"unique_id":"6_8500005_2c21bbda2e7b0ac71659d23dabbd1098separate_5_",
"followup_id":"6"
}
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| token | string | 是 | 认证码 |
成功返回值:
{
"statusCode": "1",
"message": "Success",
"info": ""
}
失败返回值:
{
"statusCode": 0,
"message": "缺少参数:followup_id"
}
| 参数 | 类型 | 说明 |
|---|---|---|
| statusCode | int | 状态码,0为正常,其他代表错误 |
| message | string | 成功失败提示信息 |
| info | string | 此处为空信息 |