# 6我的转移记录列表 > 用户的转移记录 - 2016-05-09 增加转移单号(move_no)字段 ## 请求 > URI /sbl/move/list/v1 请求方式:POST > 参数 String key 【不可空】 用户标识 boolean all 【不可空】 是否全部记录. false:加载未支付记录 ##响应 > 状态码(code) 601 无效的用户标识 10004 需要登录 > DATA字段说明 String move_no; // 转移单号 String user_name; // 用户名称 short move_type; // 转移类别 String type; // 转移类别名称 int out_city; // 转出城市代码 String out_cname; // 转出城市名称 int into_city; // 转入城市代码 String into_cname; // 转入城市名字 float charge; // 服务费 short status; // 状态 String gen_time // 生成时间 > 数据范例 { "data": [{ "move_no": "M1001001", "user_name": "转的人名", "move_type": 1, "type": "社保转入", "out_city": 0, "out_cname": null, "into_city": 1001, "into_cname": "广州", "charge": 399.0, "status": 1, "gen_time": "2018-07-02 22:22:22" }], "msg": "", "code": 200 }