注册
飞鸽客服|开发者中心
飞鸽API文档
简要描述
请求URL
请求方式
请求参数
参数名 必选 类型 说明
apiKey string ApiKey
nonce string 随机字符串
timestamp string 时间戳(秒)
sign string 签名
customers array 客户
customers
参数名 必选 类型 说明
customerName string 客户名称
enterpriseName string 企业名称
province string
city string
area string
address string 地址
starLevel string 星级
contacts array 联系人
contacts
参数名 必选 类型 说明
contactName string 客户名称
gender number 性别 0未知1男2女
cellphone string 手机号
telephone string 电话号码
email string 邮箱
wechat string 微信
qq string qq
position string 职位
extendFields
参数名 必选 类型 说明
groupName string 自定义字段组
fields array 自定义字段
fields
参数名 必选 类型 说明
fieldName string 字段名
fieldValue string 字段值
请求示例
{
  "nonce": "xxxxxxxxxxx",
  "timestamp": "xxxxxxxxxxx",
  "apiKey": "xxxxxxxxxxx",
  "sign": "xxxxxxxxxxx",
  "customers": [
        {
            "customerName": "OpenApi测试77",
            "enterpriseName": "OpenApi测试77",
            "province": "上海市",
            "city": "上海市",
            "area": "普陀区",
            "address": "天悦中心",
            "starLevel": 5,
            "contacts": [
                {
                    "contactName": "张三",
                    "gender": 1,
                    "cellphone": "15221218186",
                    "telephone": "021-88899910",
                    "email": "",
                    "wechat": "",
                    "qq": "1213121113",
                    "position": ""
                }
            ],
            "extendFields": [
                {
                    "groupName": "基本信息",
                    "fields": [
                        {
                            "fieldName": "字段1",
                            "fieldValue": "aaaa"
                        }
                    ]
                }
            ]
        }
    ]
}
响应示例
{
"code": 0,
"status": true,
"message": "请求成功",
"data": null
}