taobao.auction.titan.saas.query (询价SAAS服务查询询价结果接口)

询价SAAS服务查询询价结果接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
query_saas_request QuerySaasRequest 必须 查询询价结果请求对象
  • └ inquiry_biz_id
  • String
  • 必须
  • Alzc123456
  • 阿里资产平台返回的订单号
  • └ channel_user_id
  • String
  • 必须
  • 测试账号001
  • 机构NICK

响应参数

名称 类型 示例值 描述
result TopResult 结果
  • └ error_code
  • String
  • param_invalid
  • 错误码
  • value
  • InquirySaasResult
  • 询价结果对象
  • └ inquiry_biz_id
  • String
  • Alzc123456
  • 阿里资产平台返回的订单号
  • └ total_price
  • Number
  • 100000
  • 标的物总价(分)
  • └ report_status
  • String
  • finish
  • 报告状态,"generating", "报告生成中";"finish", "报告生成完成";"not_required", "不需要报告"
  • └ report_url
  • String
  • url
  • 报告下载地址
  • 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
  • 100
  • 面积,平米
  • └ unit_price_string
  • String
  • 100
  • 成交单价的显示,单位为分
  • deal_case_list
  • HouseListingCase []
  • 市场成交案例
  • └ case_date
  • String
  • 2023-07-01
  • 成交日期
  • └ building_area
  • String
  • 100
  • 面积,平米
  • └ case_tota_price
  • Number
  • 20000
  • 成交价格
  • └ case_tota_price_string
  • String
  • 200万
  • 成交价格的文本展示
  • └ error_msg
  • String
  • 参数不合法
  • 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AuctionTitanSaasQueryRequest req = new AuctionTitanSaasQueryRequest();
AuctionTitanSaasQueryRequest.QuerySaasRequest obj1 = new AuctionTitanSaasQueryRequest.QuerySaasRequest();
obj1.setInquiryBizId("Alzc123456");
obj1.setChannelUserId("测试账号001");
req.setQuerySaasRequest(obj1);
AuctionTitanSaasQueryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<auction_titan_saas_query_response>
    <result>
        <error_code>param_invalid</error_code>
        <value>
            <inquiry_biz_id>Alzc123456</inquiry_biz_id>
            <total_price>100000</total_price>
            <report_status>finish</report_status>
            <report_url>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>100</area>
                        <unit_price_string>100</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>20000</case_tota_price>
                        <case_tota_price_string>200万</case_tota_price_string>
                    </house_listing_case>
                </deal_case_list>
            </house_deal_records>
        </value>
        <error_msg>参数不合法</error_msg>
    </result>
</auction_titan_saas_query_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

返回
顶部