询价SAAS服务发起询价接口
名称 | 类型 | 是否必须 | 示例值 | 更多限制 | 描述 |
---|---|---|---|---|---|
inquiry_saas_request | InquirySaasRequest | 必须 | 金融saas询价请求 | ||
|
名称 | 类型 | 示例值 | 描述 |
---|---|---|---|
result | TopResult | 结果 | |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret); AuctionTitanSaasInquiryRequest req = new AuctionTitanSaasInquiryRequest(); AuctionTitanSaasInquiryRequest.InquirySaasRequest obj1 = new AuctionTitanSaasInquiryRequest.InquirySaasRequest(); obj1.setChannelUserId( "服务商测试001" ); obj1.setChannelBizId( "10001" ); obj1.setAssSecondaryType( "HOME" ); obj1.setName( "测试标的001" ); obj1.setSource(15L); obj1.setProductType(10L); obj1.setAssetInfo( "资产信息" ); obj1.setOrgName( "测试询价方001" ); req.setInquirySaasRequest(obj1); AuctionTitanSaasInquiryResponse 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 | < auction_titan_saas_inquiry_response > < result > < error_code >param_invalid</ error_code > < error_msg >参数不合法</ error_msg > < value > < inquiry_biz_id >ALZC0001</ inquiry_biz_id > < total_price >10000</ total_price > < report_status >finish</ report_status > < report_url >报表下载地址</ report_url > < house_deal_records > < auction_list > < house_auction > < item_id >123456</ item_id > < auction_ends >2023-07-01</ auction_ends > < title >测试标的001</ title > < price >10000</ price > < price_string >300万</ price_string > < area >89</ area > < unit_price_string >1000</ unit_price_string > </ house_auction > </ auction_list > < deal_case_list > < house_listing_case > < case_date >2023-07-01</ case_date > < building_area >100</ building_area > < case_tota_price >2000000</ case_tota_price > < case_tota_price_string >2000000</ case_tota_price_string > </ house_listing_case > </ deal_case_list > </ house_deal_records > </ value > </ result > </ auction_titan_saas_inquiry_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 > |
错误码 | 错误描述 | 解决方案 |
---|