• 2.4.1.7.27. UserCustomer(用户与客户)
    • 2.4.1.7.27.1. 查询UserCustomer列表
    • 2.4.1.7.27.2. 查询UserCustomer指定记录
    • 2.4.1.7.27.3. 查询UserCustomer关注列表
    • 2.4.1.7.27.4. 添加user_customer
    • 2.4.1.7.27.5. 编辑user_customer
    • 2.4.1.7.27.6. 删除user_customer
    • 2.4.1.7.27.7. 多选删除

    2.4.1.7.27. UserCustomer(用户与客户)

    2.4.1.7.27.1. 查询UserCustomer列表

    调用接口:

    属性
    url/api/user_customer/get_list
    http方法post
    Content-Typeapplication/json或application/x-www-form-urlencoded

    请求参数:

    字段字段名称字段类型说明是否必传
    page_index查询页码Integer大于 0,如果为空,则默认从第一页显示
    page_size每页记录数Integer大于 0,如果为空,则默认为 20
    condition查询条件JsonLIKE模糊搜索条件
    start_time开始时间Datetime按创建时间搜索的开始时间和结束时间
    end_time结束时间Datetime

    condition参数:

    格式

    1. [["${key}", "${operator}", "${value}"]] [["查询值", "运算符", "查询内容"]]

    举例

    1. [["user_id", "=", "1001"]]

    返回参数:

    字段字段名称字段类型说明是否必传
    code返回码Integer200:成功 500:失败
    msg提示信息String
    result结果Json

    返回数据举例:

    1. {
    2. "code": 200,
    3. "msg": "查询成功",
    4. "mix_code":130001,
    5. "mix_msg":"",
    6. "mix_ext":"",
    7. "result": {
    8. "page_index": 1,
    9. "page_size": 20,
    10. "total_pages": 1,
    11. "total_records": 2,
    12. "data": [
    13. {
    14. "user_id": 998,
    15. "customer_id": 1002,
    16. "template": null,
    17. "script": null,
    18. "reference": "",
    19. "created": "2018-11-28 11:04:18",
    20. "is_available": 1,
    21. "boss_sync": 0
    22. },
    23. {
    24. "user_id": 998,
    25. "customer_id": 1001,
    26. "template": null,
    27. "script": null,
    28. "reference": "",
    29. "created": "2018-11-28 10:40:31",
    30. "is_available": 1,
    31. "boss_sync": 0
    32. }
    33. ]
    34. }
    35. }

    2.4.1.7.27.2. 查询UserCustomer指定记录

    调用接口:

    属性
    url/api/user_customer/get
    http方法post
    Content-Typeapplication/json或application/x-www-form-urlencoded

    请求参数:

    字段字段名称字段类型说明是否必传
    user_id用户标识String
    customer_id客户标识String

    返回参数:

    字段字段名称字段类型说明是否必传
    code返回码Integer200:成功 500:失败
    msg提示信息String
    result返回结果Json

    返回示例:

    1. {
    2. "code": 200,
    3. "msg": "查询成功",
    4. "mix_code":130001,
    5. "mix_msg":"",
    6. "mix_ext":"",
    7. "result": {
    8. "user_id": 998,
    9. "customer_id": 1001,
    10. "template": null,
    11. "script": null,
    12. "reference": "",
    13. "created": "2018-11-28 10:40:31",
    14. "is_available": 1,
    15. "boss_sync": 0
    16. }
    17. }

    2.4.1.7.27.3. 查询UserCustomer关注列表

    调用接口:

    属性
    url/api/user_customer/get_customer_list
    http方法post
    Content-Typeapplication/json或application/x-www-form-urlencoded

    请求参数:

    字段字段名称字段类型说明是否必传
    user_id用户标识String
    page_index查询页码Integer大于 0,如果为空,则默认从第一页显示
    page_size每页记录数Integer大于 0,如果为空,则默认为 20

    返回参数:

    字段字段名称字段类型说明是否必传
    code返回码Integer200:成功 500:失败
    msg提示信息String
    result结果Json

    返回数据举例:

    1. {
    2. "code": 200,
    3. "msg": "查询成功",
    4. "mix_code":130001,
    5. "mix_msg":"",
    6. "mix_ext":"",
    7. "result": {
    8. "page_index": 1,
    9. "page_size": 20,
    10. "total_pages": 1,
    11. "total_records": 2,
    12. "data": [
    13. {
    14. "user_id": 998,
    15. "customer_id": 1001,
    16. "template": null,
    17. "script": null,
    18. "reference": "",
    19. "created": "2018-11-28 10:40:31",
    20. "is_available": 1,
    21. "boss_sync": 0
    22. }
    23. ]
    24. }
    25. }

    2.4.1.7.27.4. 添加user_customer

    调用接口:

    属性
    url/api/user_customer/add
    http方法post
    Content-Typeapplication/json或application/x-www-form-urlencoded

    请求参数:

    字段字段名称字段类型说明是否必传
    user_id用户标识String
    customer_id客户标识String
    secret授权码String
    template模板/样式text
    script脚本text
    reference参考号String

    返回参数:

    字段字段名称字段类型说明是否必传
    code返回码Integer200:成功 500:失败
    msg提示信息String
    result返回结果Json

    返回示例:

    1. {
    2. "code": 200,
    3. "msg": "添加成功",
    4. "mix_code":130001,
    5. "mix_msg":"",
    6. "mix_ext":"",
    7. "result": []
    8. }

    2.4.1.7.27.5. 编辑user_customer

    调用接口:

    属性
    url/api/user_customer/edit
    http方法post
    Content-Typeapplication/json或application/x-www-form-urlencoded

    请求参数:

    字段字段名称字段类型说明是否必传
    user_id用户标识String
    customer_id客户标识String
    template模板/样式text
    script脚本text
    reference参考号String

    返回参数:

    字段字段名称字段类型说明是否必传
    code返回码Integer200:成功 500:失败
    msg提示信息String
    result返回结果Json

    返回示例:

    1. {
    2. "code": 200,
    3. "msg": "编辑成功",
    4. "mix_code":130001,
    5. "mix_msg":"",
    6. "mix_ext":"",
    7. "result": []
    8. }

    2.4.1.7.27.6. 删除user_customer

    调用接口:

    属性
    url/api/user_customer/delete
    http方法post
    Content-Typeapplication/json或application/x-www-form-urlencoded

    请求参数:

    字段字段名称字段类型说明是否必传
    user_id用户标识String
    customer_id客户标识String

    返回参数:

    字段字段名称字段类型说明是否必传
    code返回码Integer200:成功 500:失败
    msg提示信息String
    result返回结果Json

    返回示例:

    1. {
    2. "code": 200,
    3. "msg": "删除成功",
    4. "mix_code":130001,
    5. "mix_msg":"",
    6. "mix_ext":"",
    7. "result": []
    8. }

    2.4.1.7.27.7. 多选删除

    调用接口:

    属性
    url/api/user_customer/multi_delete
    http方法post
    Content-Typeapplication/json或application/x-www-form-urlencoded

    请求参数:

    字段字段名称字段类型说明是否必传
    user_id用户标识String
    customer_id客户标识Json["10001", "10002"]

    返回参数:

    字段字段名称字段类型说明是否必传
    code返回码Integer200:成功 500:失败
    msg提示信息String
    result返回结果Json

    返回示例:

    1. {
    2. "code": 200,
    3. "msg": "删除成功",
    4. "mix_code":130001,
    5. "mix_msg":"",
    6. "mix_ext":"",
    7. "result": []
    8. }