taobao.auction.paimai.loan.getloanauctionbyitemid (根据标的Id获取标的信息)

根据标的Id获取标的信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
item_id Number 必须 2300959358051 标的ID

响应参数

名称 类型 示例值 描述
result_code String SYSTEM_ERROR 错误码
result_msg String 系统异常 错误信息
data LoanAuctionDTO 标的信息
  • └ start_price
  • Number
  • 100
  • 起拍价
  • └ bid_status
  • Number
  • 0
  • 拍卖状态
  • └ address
  • String
  • 浙江省杭州市
  • 标的地址
  • └ foregift_amount
  • Number
  • 1
  • 保证金
  • └ current_price
  • Number
  • 100
  • 当前价
  • └ deal_price
  • Number
  • 11111111
  • 成交价
  • └ title
  • String
  • 测试自营贷款线上化请不要拍
  • 标的名称
  • └ type
  • Number
  • 2
  • 标的业务类型
  • └ item_id
  • Number
  • 892129166654
  • 标的ID
  • └ institution_name
  • String
  • tyx测试账号005
  • 处置机构名称
  • └ start_time
  • Date
  • 1741140000000
  • 开拍时间
  • └ location
  • String
  • 330102
  • 区域code
  • └ end_time
  • Date
  • 1741226400000
  • 结束时间
  • └ circle
  • Number
  • 1
  • 第几拍
  • └ item_url
  • String
  • https://sf-item.taobao.com/sf_item/892129166654.htm
  • 标的链接
  • └ consult_price
  • Number
  • 100000
  • 评估价

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AuctionPaimaiLoanGetloanauctionbyitemidRequest req = new AuctionPaimaiLoanGetloanauctionbyitemidRequest();
req.setItemId(2300959358051L);
AuctionPaimaiLoanGetloanauctionbyitemidResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<auction_paimai_loan_getloanauctionbyitemid_response>
    <result_code>SYSTEM_ERROR</result_code>
    <result_msg>系统异常</result_msg>
    <data>
        <start_price>100</start_price>
        <bid_status>0</bid_status>
        <address>浙江省杭州市</address>
        <foregift_amount>1</foregift_amount>
        <current_price>100</current_price>
        <deal_price>11111111</deal_price>
        <title>测试自营贷款线上化请不要拍</title>
        <type>2</type>
        <item_id>892129166654</item_id>
        <institution_name>tyx测试账号005</institution_name>
        <start_time>1741140000000</start_time>
        <location>330102</location>
        <end_time>1741226400000</end_time>
        <circle>1</circle>
        <item_url>https://sf-item.taobao.com/sf_item/892129166654.htm</item_url>
        <consult_price>100000</consult_price>
    </data>
</auction_paimai_loan_getloanauctionbyitemid_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

返回
顶部