taobao.auction.gov.merchantintent.pagequery (分页查询招商公告意向人列表)

分页查询招商公告意向人列表

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
nick String 必须 zipeng01 入驻机构账号
merchant_id Number 可选 123 招商公告id
current_page Number 必须 1 当前页数

响应参数

名称 类型 示例值 描述
result Result4Top 意向人result 返回结果
  • └ total_item
  • Number
  • 100
  • 总条数
  • └ error_msg
  • String
  • 错误信息
  • └ total_page
  • Number
  • 10
  • 总页数
  • └ error_code
  • String
  • 错误码
  • value
  • MerchantIntentDTO []
  • 接口返回数据
  • 接口返回值
  • └ merchan_title
  • String
  • 测试公告
  • 公告标题
  • └ phone
  • String
  • 18888888888
  • 手机号
  • └ name
  • String
  • 张三
  • 意向人姓名
  • └ submission_time
  • String
  • 2021-01-12 14:13:13
  • 提交时间
  • └ merchant_id
  • Number
  • 11123
  • 公告ID
  • └ unique_key
  • String
  • 1sadff3223df
  • 意向提交记录唯一标识
  • └ memo
  • String
  • 这是意向说明
  • 意向说明
  • └ current_page
  • Number
  • 1
  • 当前页
  • └ page_size
  • Number
  • 20
  • 页大小

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AuctionGovMerchantintentPagequeryRequest req = new AuctionGovMerchantintentPagequeryRequest();
req.setNick("zipeng01");
req.setMerchantId(123L);
req.setCurrentPage(1L);
AuctionGovMerchantintentPagequeryResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<auction_gov_merchantintent_pagequery_response>
    <result>
        <total_item>100</total_item>
        <error_msg></error_msg>
        <total_page>10</total_page>
        <error_code></error_code>
        <value>
            <merchant_intent_d_t_o>
                <merchan_title>测试公告</merchan_title>
                <phone>18888888888</phone>
                <name>张三</name>
                <submission_time>2021-01-12 14:13:13</submission_time>
                <merchant_id>11123</merchant_id>
                <unique_key>1sadff3223df</unique_key>
                <memo>这是意向说明</memo>
            </merchant_intent_d_t_o>
        </value>
        <current_page>1</current_page>
        <page_size>20</page_size>
    </result>
</auction_gov_merchantintent_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

返回
顶部