文档中心 > API类目 > 淘宝小程序API

taobao.smartapp.table.list.get (智能应用服务登记工作表列表查询)

智能应用服务登记工作表列表查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述

响应参数

名称 类型 示例值 描述
result AfterSaleGetWorkTableListResponse 调用结果
  • └ total_count
  • Number
  • 1
  • 返回结果数量
  • record
  • AfterSaleGetWorkTableListRecord []
  • 调用结果
  • └ table_id
  • String
  • auto_Z2vO5nt8
  • 工作表id
  • └ table_name
  • String
  • 工作表
  • 工作表名称
  • └ create_time
  • Date
  • 2023-07-17 18:40:20
  • 工作表创建时间
  • └ app_id
  • Number
  • 600837
  • 智能应用服务登记应用id
business_success Boolean true 调用结果
error_msg String 错误信息 错误信息

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
SmartappTableListGetRequest req = new SmartappTableListGetRequest();
SmartappTableListGetResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<smartapp_table_list_get_response>
    <result>
        <total_count>1</total_count>
        <record>
            <after_sale_get_work_table_list_record>
                <table_id>auto_Z2vO5nt8</table_id>
                <table_name>工作表</table_name>
                <create_time>2023-07-17 18:40:20</create_time>
                <app_id>600837</app_id>
            </after_sale_get_work_table_list_record>
        </record>
    </result>
    <business_success>true</business_success>
    <error_msg>错误信息</error_msg>
</smartapp_table_list_get_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

返回
顶部