taobao.auction.zc.itemlist.query (淘宝资产拍卖)

淘宝资产拍卖的相关top接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
case_no String 必须 xxx号 破产案号
user_tb_nick String 必须 测试账号 淘宝昵称
item_status Number 可选 0
  • 默认值:100
  • 拍品状态:0即将开始、1正在进行、2已中止、3已撤回、4交易未履行、5竞拍成功、6已流拍、7已以物抵债、100所有状态
    cur_page Number 可选 1
  • 默认值:1
  • 当前查询页码,从1开始
    page_size Number 可选 100
  • 默认值:100
  • 分页大小(默认100,最大200)

    响应参数

    名称 类型 示例值 描述
    result Result4Top 服务返回结果
    • └ success
    • Boolean
    • true
    • 服务是否调用成功,成功为true,false请查看详细的错误提示
    • └ error_code
    • String
    • 错误code
    • 错误码
    • value
    • ItemDetailForTopvo
    • 服务返回值
    • └ court_name
    • String
    • 委托法院具体名称
    • └ user_nick
    • String
    • 测试账号
    • 机构淘宝昵称
    • └ total_num
    • Number
    • 100
    • 查询到的拍品总数
    • auction_item_list
    • AuctionItem []
    • 拍品结果列表
    • └ item_id
    • Number
    • 拍品Id
    • └ auction_status
    • String
    • 即将开始
    • 拍品状态,返回为字符串,0即将开始、1正在进行、2已中止、3已撤回、4交易未履行、5竞拍成功、6已流拍、7已以物抵债、100所有状态
    • └ title
    • String
    • xxx关于xxx的拍卖
    • 拍品名称
    • └ auction_period
    • String
    • 第一次拍卖
    • 拍卖阶段:第一次拍卖、第二次拍卖、再次拍卖、重新拍卖、变卖
    • └ case_no
    • String
    • 资产案号
    • 破产案号
    • └ cur_page
    • Number
    • 1
    • 当前页
    • └ total_page
    • Number
    • 10
    • 总页数
    • └ page_size
    • Number
    • 100
    • 分页大小
    • └ error_msg
    • String
    • 错误msg
    • 错误消息

    请求示例

    • JAVA
    • .NET
    • PHP
    • CURL
    • Python
    • C/C++
    • NodeJS
    TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
    AuctionZcItemlistQueryRequest req = new AuctionZcItemlistQueryRequest();
    req.setCaseNo("xxx号");
    req.setUserTbNick("测试账号");
    req.setItemStatus(0L);
    req.setCurPage(1L);
    req.setPageSize(100L);
    AuctionZcItemlistQueryResponse rsp = client.execute(req);
    System.out.println(rsp.getBody());

    响应示例

    • XML示例
    • JSON示例
    <auction_zc_itemlist_query_response>
        <result>
            <success>true</success>
            <error_code>错误code</error_code>
            <value>
                <court_name>无</court_name>
                <user_nick>测试账号</user_nick>
                <total_num>100</total_num>
                <auction_item_list>
                    <auction_item>
                        <item_id>无</item_id>
                        <auction_status>即将开始</auction_status>
                        <title>xxx关于xxx的拍卖</title>
                        <auction_period>第一次拍卖</auction_period>
                    </auction_item>
                </auction_item_list>
                <case_no>资产案号</case_no>
                <cur_page>1</cur_page>
                <total_page>10</total_page>
                <page_size>100</page_size>
            </value>
            <error_msg>错误msg</error_msg>
        </result>
    </auction_zc_itemlist_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

    返回
    顶部