阿里拍卖卖家登录之后查询资质审核提交的列表
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
itemid | Number | 可选 | 1234567 | 标的 ID | |
apply_id | Number | 可选 | 12345678 | 资质审核 ID | |
seller_nick | String | 必须 | xxx法院 | 卖家 NICK | |
buyer_nick | String | 可选 | 小蓝 | 买家 NICK | |
status | Number | 可选 | 1 | 审核状态(1:待审核,2:审核通过,3:审核不通过,4:审核过期) | |
page_no | Number | 必须 | 1 | 页数(从1开始 每页默认10条) |
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
apply_list | QualApplyVo [] | 资质审核列表 | 资质审核列表 |
|
|||
total_item | Number | 30 | 当前查询条件记录总数 |
1 2 3 4 5 6 7 8 9 10 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AuctionGovQualificationListRequest req = new AuctionGovQualificationListRequest(); req.setItemid(1234567L); req.setApplyId(12345678L); req.setSellerNick( "xxx法院" ); req.setBuyerNick( "小蓝" ); req.setStatus(1L); req.setPageNo(1L); AuctionGovQualificationListResponse rsp = client.execute(req); System.out.println(rsp.getBody()); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | < auction_gov_qualification_list_response > < apply_list > < qual_apply_vo > < apply_id >12345689</ apply_id > < auction_title >桑塔纳一辆</ auction_title > < main_pic >hfJILdj324sf</ main_pic > < auction_start >2019.11.28 15:39:53</ auction_start > < auction_end >2019.11.28 15:39:53</ auction_end > < item_status >1</ item_status > < qual_apply_end_date >2019.11.28 15:39:53</ qual_apply_end_date > < qual_status >1</ qual_status > < audit_result >身份不匹配</ audit_result > < submit_time >2019.11.28 15:39:53</ submit_time > < audit_time >2019.11.28 15:39:53</ audit_time > < attachment_list > < qual_attach_file > < download_url >hjkhf67GGHF</ download_url > < title >图片A.jpg</ title > </ qual_attach_file > </ attachment_list > < pics_list > < string >图片列表</ string > </ pics_list > < buyer_info > < phone >12345678901</ phone > < realname >王xx</ realname > < card_number >12345678901</ card_number > < card_type >2</ card_type > < buyer_open_id >AAEuzpioAMVwNvnMvUs6Q2Qj</ buyer_open_id > </ buyer_info > < privilege_info_list > < qual_user_info > < phone >12345678901</ phone > < realname >王xx</ realname > < card_number >12345678901</ card_number > < card_type >2</ card_type > </ qual_user_info > </ privilege_info_list > < item_id >12345678</ item_id > < buyer_economic_type >1</ buyer_economic_type > < custom_attachment_list > < custom_qual_attachment_v_o > < out_id >out_id_123</ out_id > < name >身份证正反面扫描件</ name > < type >1</ type > < buyer_preview_url >//zc-paimai.daily.taobao.net/download_attach.do?attach_id=123</ buyer_preview_url > < buyer_preview_title >勘探确认书.pdf</ buyer_preview_title > </ custom_qual_attachment_v_o > </ custom_attachment_list > </ qual_apply_vo > </ apply_list > < total_item >30</ total_item > </ auction_gov_qualification_list_response > |
1 2 3 4 5 6 | < error_response > < code >50</ code > < msg >Remote service error</ msg > < sub_code >isv.invalid-parameter</ sub_code > < sub_msg >非法参数</ sub_msg > </ error_response > |
错误码 | 错误描述 | 解决方案 |
---|