taobao.auction.titan.saas.inquiry (询价SAAS服务发起询价接口)

询价SAAS服务发起询价接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
inquiry_saas_request InquirySaasRequest 必须 金融saas询价请求
  • └ channel_user_id
  • String
  • 必须
  • 服务商测试001
  • 机构NICK
  • └ channel_biz_id
  • String
  • 必须
  • 10001
  • 机构侧订单号,由机构自定义,便于问题排查
  • └ ass_secondary_type
  • String
  • 必须
  • HOME
  • 资产类型
  • └ name
  • String
  • 必须
  • 测试标的001
  • 标的物名称
  • └ source
  • Number
  • 可选
  • 15
  • 估值模型
  • └ product_type
  • Number
  • 必须
  • 10
  • 产品类型
  • └ asset_info
  • String
  • 必须
  • 资产信息
  • 资产信息
  • └ org_name
  • String
  • 可选
  • 测试询价方001
  • 询价方名称,用于询价报告展示

响应参数

名称 类型 示例值 描述
result TopResult 结果
  • └ error_code
  • String
  • param_invalid
  • 错误码
  • └ error_msg
  • String
  • 参数不合法
  • 错误信息
  • value
  • InquirySaasResult
  • 询价结果
  • └ inquiry_biz_id
  • String
  • ALZC0001
  • 阿里资产询价订单ID
  • └ total_price
  • Number
  • 10000
  • 总价,单位为分
  • └ report_status
  • String
  • finish
  • 报告状态
  • └ report_url
  • String
  • 报表下载地址
  • 报告下载地址
  • house_deal_records
  • HouseDealRecordsVO
  • 房产成交案例
  • auction_list
  • HouseAuction []
  • 拍卖成交案例
  • └ item_id
  • Number
  • 123456
  • 标的物ID
  • └ auction_ends
  • String
  • 2023-07-01
  • 结束时间
  • └ title
  • String
  • 测试标的001
  • 标的物名称
  • └ price
  • Number
  • 10000
  • 成交价格,单位分
  • └ price_string
  • String
  • 300万
  • 成交价格的文本显示
  • └ area
  • String
  • 89
  • 房屋面积,单位是平方米
  • └ unit_price_string
  • String
  • 1000
  • 成交单价的显示,单位为分
  • deal_case_list
  • HouseListingCase []
  • 市场成交案例
  • └ case_date
  • String
  • 2023-07-01
  • 成交时间
  • └ building_area
  • String
  • 100
  • 面积,单位:平米
  • └ case_tota_price
  • String
  • 2000000
  • 成交总价,单位:元
  • └ case_tota_price_string
  • String
  • 2000000
  • 成交总价的文本显示

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
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());

响应示例

  • XML示例
  • JSON示例
<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>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部