taobao.auction.zc.project.detail.result (查询标的详细信息 老版即将下线)

淘宝资产拍卖的查询拍品详细接口

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
item_id Number 必须 14343 淘宝拍品id

响应参数

名称 类型 示例值 描述
result Result4Top 结果输出 结果输出
  • └ error_code
  • String
  • 错误代码
  • 错误代码
  • └ error_msg
  • String
  • 错误描述
  • 错误描述
  • └ success
  • Boolean
  • 是否调用成功
  • 是否调用成功
  • value
  • ZcAuctionVo
  • 结果
  • 结果
  • └ apply_count
  • Number
  • 10
  • 交保人数
  • └ bid_count
  • Number
  • 10
  • 出价次数
  • └ case_no
  • String
  • 案号
  • 案号
  • └ cooperater
  • String
  • 合作机构
  • 合作机构
  • └ end_time
  • String
  • 拍品结束时间
  • 拍品结束时间
  • └ final_price
  • Number
  • 11234
  • 成交价格,精确到分
  • └ item_id
  • Number
  • 14343
  • 淘宝拍品id
  • └ out_id
  • String
  • 34343
  • 外部合作伙伴的id,创建拍品时传入
  • └ pic_url
  • String
  • yyyy-MM-dd HH:mm:ss
  • 图片地址
  • └ publish_time
  • String
  • yyyy-MM-dd HH:mm:ss
  • 拍品发布时间
  • └ reserve_price
  • Number
  • 1234
  • 保留价
  • └ start_time
  • String
  • yyyy-MM-dd HH:mm:ss
  • 开始时间
  • └ status
  • String
  • 正在进行
  • 状态:正在进行|即将开始|中止|撤回|流拍|已结束
  • └ title
  • String
  • 拍品标题
  • 拍品标题
  • └ uv_count
  • Number
  • 3
  • 出价人数
  • └ winner_time
  • String
  • 最终成交时间
  • 最终成交时间
  • └ start_price
  • Number
  • 1200
  • 起拍价(精确到分)
  • └ increase_range
  • Number
  • 200
  • 加价幅度(精确到分)
  • └ freeze_amount
  • Number
  • 100
  • 保证金(精确到分)
  • └ bid_rule_desc
  • String
  • 一人成交
  • 竞价规则
  • └ consult_price
  • Number
  • 12000
  • 评估价(精确到分)
  • └ item_detail_desc
  • String
  • 详情描述
  • 详情描述
  • └ buyer_qualification_list
  • String []
  • 资质要求列表
  • 竞买资质
  • └ current_price
  • Number
  • 20000
  • 当前价(精确到分)
  • └ project_id
  • Number
  • 123
  • 公告id
  • └ out_item_id
  • String
  • I_123456
  • 外部系统拍品id
  • └ cat_id
  • Number
  • 82973
  • 类目id
  • └ out_winner_id
  • String
  • U_123
  • 外部系统成交人用户id
  • └ stage
  • Number
  • 1
  • 拍品处置阶段 可用值:1:第一次拍卖
  • location_info
  • LocationInfo
  • 地址信息
  • 地址信息
  • └ location
  • String
  • 浙江省杭州市上城区四季青街道杭州钱江新城市民中心
  • 详细地址
  • └ address
  • String
  • 333102
  • 区级地址code(国标地址库)
  • └ coordinate
  • String
  • 120.20984,30.246306
  • 经纬度坐标,以英文逗号分割
  • └ delivery_mode
  • Number
  • 10
  • 运费模式,10:无需发货,1:买家自提,4:卖家包邮:2:买家到付,3:自定义运费
  • └ postage
  • String
  • 10
  • 运费(仅运费模式为自定义运费时需要)
  • └ notify_user_num
  • Number
  • 100
  • 提醒人数
  • └ look_user_num
  • Number
  • 1000
  • 围观人数
  • └ link_man
  • String
  • 张三
  • 联系人
  • └ mobile_phone
  • String
  • 18888888888
  • 移动电话
  • └ phone
  • String
  • 0571-88888888
  • 座机
  • attachment_list
  • Attachment []
  • 附件列表
  • 附件列表
  • └ url
  • String
  • https://xxx
  • 附件url
  • └ local_file_name
  • String
  • xxx pdf
  • 附件名称
  • └ number
  • String
  • S_123
  • 资产编号

请求示例

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

响应示例

  • XML示例
  • JSON示例
<auction_zc_project_detail_result_response>
    <result>
        <error_code>错误代码</error_code>
        <error_msg>错误描述</error_msg>
        <success>是否调用成功</success>
        <value>
            <apply_count>10</apply_count>
            <bid_count>10</bid_count>
            <case_no>案号</case_no>
            <cooperater>合作机构</cooperater>
            <end_time>拍品结束时间</end_time>
            <final_price>11234</final_price>
            <item_id>14343</item_id>
            <out_id>34343</out_id>
            <pic_url>yyyy-MM-dd HH:mm:ss</pic_url>
            <publish_time>yyyy-MM-dd HH:mm:ss</publish_time>
            <reserve_price>1234</reserve_price>
            <start_time>yyyy-MM-dd HH:mm:ss</start_time>
            <status>正在进行</status>
            <title>拍品标题</title>
            <uv_count>3</uv_count>
            <winner_time>最终成交时间</winner_time>
            <start_price>1200</start_price>
            <increase_range>200</increase_range>
            <freeze_amount>100</freeze_amount>
            <bid_rule_desc>一人成交</bid_rule_desc>
            <consult_price>12000</consult_price>
            <item_detail_desc>详情描述</item_detail_desc>
            <buyer_qualification_list>
                <string>资质要求列表</string>
            </buyer_qualification_list>
            <current_price>20000</current_price>
            <project_id>123</project_id>
            <out_item_id>I_123456</out_item_id>
            <cat_id>82973</cat_id>
            <out_winner_id>U_123</out_winner_id>
            <stage>1</stage>
            <location_info>
                <location>浙江省杭州市上城区四季青街道杭州钱江新城市民中心</location>
                <address>333102</address>
                <coordinate>120.20984,30.246306</coordinate>
            </location_info>
            <delivery_mode>10</delivery_mode>
            <postage>10</postage>
            <notify_user_num>100</notify_user_num>
            <look_user_num>1000</look_user_num>
            <link_man>张三</link_man>
            <mobile_phone>18888888888</mobile_phone>
            <phone>0571-88888888</phone>
            <attachment_list>
                <attachment>
                    <url>https://xxx</url>
                    <local_file_name>xxx pdf</local_file_name>
                </attachment>
            </attachment_list>
            <number>S_123</number>
        </value>
    </result>
</auction_zc_project_detail_result_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

返回
顶部