taobao.auction.zc.bidderinfo.pagequery (分页查询标的出价记录)

分页查询标的出价记录

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
item_id Number 必须 123456 标的id
page Number 必须 1 页码(每页大小固定为20条,不可更改)

响应参数

名称 类型 示例值 描述
result Result4Top 出价列表Result 出价列表Result
  • └ total_item
  • Number
  • 100
  • 总条数
  • └ total_page
  • Number
  • 5
  • 总页数
  • └ error_code
  • String
  • system-error
  • 错误码
  • └ page_size
  • Number
  • 20
  • 每页条数
  • └ current_page
  • Number
  • 1
  • 当前页码
  • └ error_msg
  • String
  • 出价记录查询接口不可用
  • 错误信息
  • value
  • TopBidderInfoVo
  • 接口返回数据
  • 接口返回数据
  • bidder_info_list
  • Bidderinfolist []
  • 出价列表
  • 出价列表
  • └ out_user_id
  • String
  • U_12345
  • 外部系统用户id
  • └ bid_time
  • String
  • 2020-10-10 09:30:00
  • 出价时间
  • └ bid_price
  • Number
  • 1000
  • 出价金额
  • └ alias_name
  • String
  • A121
  • 竞买号
  • └ version
  • Number
  • 10
  • 版本号,记录标的的版本状态,每当有出价操作或者标的信息变更时版本号+1,用于判断标的状态是否有更新
  • └ bid_version_sequence
  • Number
  • 1
  • 出价连续的序号,表示这是当前标的的第几次出价
  • └ buyer_open_id
  • String
  • AAEuzpioAMVwNvnMvUs6Q2Qj
  • 买家openId,该字段竞拍期间为空,标的结束后有值
  • └ out_item_id
  • String
  • I_1234
  • 外部系统标的id
  • └ item_id
  • Number
  • 123456
  • 标的id

请求示例

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

响应示例

  • XML示例
  • JSON示例
<auction_zc_bidderinfo_pagequery_response>
    <result>
        <total_item>100</total_item>
        <total_page>5</total_page>
        <error_code>system-error</error_code>
        <page_size>20</page_size>
        <current_page>1</current_page>
        <error_msg>出价记录查询接口不可用</error_msg>
        <value>
            <bidder_info_list>
                <bidderinfolist>
                    <out_user_id>U_12345</out_user_id>
                    <bid_time>2020-10-10 09:30:00</bid_time>
                    <bid_price>1000</bid_price>
                    <alias_name>A121</alias_name>
                    <version>10</version>
                    <bid_version_sequence>1</bid_version_sequence>
                    <buyer_open_id>AAEuzpioAMVwNvnMvUs6Q2Qj</buyer_open_id>
                </bidderinfolist>
            </bidder_info_list>
            <out_item_id>I_1234</out_item_id>
            <item_id>123456</item_id>
        </value>
    </result>
</auction_zc_bidderinfo_pagequery_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

返回
顶部