文 档 中 心 / Document Center
搜索 管理中心
壹川接口文档V3
获取指定账户下的银行卡列表
更新时间:2018-04-26 18:14:20   更新人员:叶洋   文档状态:完成 #252    测试接口
摘要
获取指定账户下的银行卡列表
  1. 接口基本信息
    接口名称:获取指定账户银行卡列表
    请求方法:GET
    接口地址:bankcard
    登录验证:是
  2. 请求参数
    参数名 参数 数据类型 是否必须 示例值 说明
    page 分页 int
    row 每页数量 int 默认值为15
    account_id 账户id string
  3. 响应数据参数
    参数名 参数 数据类型 示例值 说明
    id 序号 int
    create_time 添加时间 string
    create_by{} 添加人 object
    ├ uid ├ 添加人uid string
    ├ code ├ 添加人code string
    ├ username ├ 添加人用户名 string
    ├ nickname ├ 添加人昵称 string
    └ realname └ 添加人真实姓名 string
    update_time 更新时间 string
    update_by{} 更新人 object
    ├ uid ├ 更新人uid string
    ├ code ├ 更新人code string
    ├ username ├ 更新人用户名 string
    ├ nickname ├ 更新人昵称 string
    └ realname └ 更新人真实姓名 string
    account_id 账户id string
    card_type 银行卡类型 int
    is_verify 验证状态 int 1验证通过 0未验证
    card_no 银行卡卡号 string
    card_bin 银行卡卡bin string 卡号前6位
    cardholder 持卡人姓名 string
    mobile 绑定手机号 string
  4. 请求示例
    请求例子:
     
    apirq('bankcard', {
        data: {
            "row": 2,
            "page": 1
        }
    }) 
    
    返回数据结果:
     
    {
        "code": 0,
        "msg": "ok",
        "time": "1524712872",
        "data": {
            "page": 1,
            "row": 2,
            "count": 2,
            "total_count": 7,
            "total_page": 4,
            "lists": [
                {
                    "id": 7,
                    "create_time": "2017-12-21 13:36:52",
                    "create_by": {
                        "uid": "0000000000000100",
                        "code": "U8212376",
                        "username": "admin",
                        "nickname": "系统内建管理员",
                        "realname": "系统内建管理员"
                    },
                    "update_time": "2017-12-21 13:36:52",
                    "update_by": {
                        "uid": "0000000000000100",
                        "code": "U8212376",
                        "username": "admin",
                        "nickname": "系统内建管理员",
                        "realname": "系统内建管理员"
                    },
                    "account_id": 25,
                    "card_type": 0,
                    "is_verify": 1,
                    "card_no": "6217883100000027783",
                    "card_bin": "621788",
                    "mobile": "15902846112",
                    "cardholder": "邓小林"
                },
                {
                    "id": 6,
                    "create_time": "2017-12-12 13:25:18",
                    "create_by": {
                        "uid": "0000000000000100",
                        "code": "U8212376",
                        "username": "admin",
                        "nickname": "系统内建管理员",
                        "realname": "系统内建管理员"
                    },
                    "update_time": "2017-12-12 13:25:18",
                    "update_by": {
                        "uid": "0000000000000100",
                        "code": "U8212376",
                        "username": "admin",
                        "nickname": "系统内建管理员",
                        "realname": "系统内建管理员"
                    },
                    "account_id": 25,
                    "card_type": 0,
                    "is_verify": 1,
                    "card_no": "622908433030901711",
                    "card_bin": "622908",
                    "mobile": "13808057768",
                    "cardholder": "薛松涛"
                }
            ]
        }
    } 
    
本书创建于 2018-03-30 12:03:13 ?如有疑问,请联系技术人员