菜单

列表

基本信息

  • 用途说明:查询跟进记录列表
  • 请求方式:POST
  • 请求地址:https://api.kingdee.com/weigusoft/wg_crm/wg_followListApi?access_token=

请求参数

headers参数

  • 所有的接口必须携带header参数
参数名称 参数示例 是否必填 参数说明
Content-Type application/json true 固定传:application/json
groupName ns-v7g6 true 分组名称,获取授权信息时返回的groupName
accountId 16xxxxxxxxxxxx true 账套ID,获取授权信息时返回的accountId
X-GW-Router-Addr https://tf.jdy.com true IDC域名,获取授权信息时返回的domain

body参数

参数名称 必选 类型 说明
pageindex true number 当前页(默认1)
pagesize true number 每页显示条数(默认10,最大100)
id true String 单据id
sorttime true String 排序方式-desc:按创建时间降序 asc:按创建时间升序
bdate true String 开始时间
edate true String 结束时间
custype true String  
gjper true String 跟进人id
sourceno true String 客户编码
search true String 模糊搜索-客户名称、跟进方式
customer_name true String 客户名称
sourcetype true String 默认-wg_bd_customer_inh

请求示例

{
    "pageindex": 1,
    "pagesize": 10,
    "id": "",
    "sorttime": "desc",
    "bdate": "",
    "edate": "",
    "custype": "",
    "gjper": "",
    "sourceno": "CRMKH-20241202-0003",
    "search": "",
    "customer_name": "",
    "sourcetype": "wg_bd_customer_inh"
}

响应示例

{
    "data": {
        "currentPageSize": 10,
        "currentPageIndex": 1,
        "totalPages": 1,
        "count": 2,
        "list": [
            {
                "folId": "2148049748722980866",//单据id
                "cusName": "1202客户3",//客户名称
                "folBillNo": "GJJL-20250211-00000003",//单据编码
                "sourceNo": "CRMKH-20241202-0003",//客户编码
                "salerId": "1394084520470297600",//销售员id
                "salerName": "董素敏",//销售员名称
                "followWayId": "2",//跟进方式id
                "followWay": "电话",,//跟进方式
                "followTime": "2025-02-11 17:51:08.0",//跟进时间
                "followContent": "测试1",//跟进内容
                "nextFollowTime": "2025-02-28 17:51:16.0",//下次跟进时间
                "nextFollowContent": "测试2",//下次跟进内容
                "followAddress": "",//地址
                "isYx": false//是否有效跟进
            }
        ]
    },
    "errorCode": "success",
    "status": true,
    "success": true
}

分享文章
最近修改: 2025-02-12