文档中心 > API类目 > 天猫汽车

tmall.aliauto.stores.info.get (天猫汽车-门店信息)

天猫汽车-门店信息

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
page_no Number 可选 1
  • 默认值:1
  • 页码

    响应参数

    名称 类型 示例值 描述
    result AliAutoResult 结果
    • data
    • StoreOpenListResp
    • 门店数据
    • └ page_no
    • Number
    • 1
    • 页码
    • └ page_size
    • Number
    • 10
    • 分页大小
    • └ total
    • Number
    • 100
    • 总数
    • list
    • StoreOpenDTO []
    • 门店列表
    • └ id
    • Number
    • 123123
    • 门店id
    • └ name
    • String
    • xx门店
    • 门店名称
    • └ subname
    • String
    • xx分店
    • 分店名称
    • └ success
    • Boolean
    • true
    • 请求是否成功
    • └ msg_info
    • String
    • 系统开小差了~
    • 错误信息
    • └ msg_code
    • String
    • SYS_FAIL
    • 错误码

    请求示例

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

    响应示例

    • XML示例
    • JSON示例
    <tmall_aliauto_stores_info_get_response>
        <result>
            <data>
                <page_no>1</page_no>
                <page_size>10</page_size>
                <total>100</total>
                <list>
                    <store_open_d_t_o>
                        <id>123123</id>
                        <name>xx门店</name>
                        <subname>xx分店</subname>
                    </store_open_d_t_o>
                </list>
            </data>
            <success>true</success>
            <msg_info>系统开小差了~</msg_info>
            <msg_code>SYS_FAIL</msg_code>
        </result>
    </tmall_aliauto_stores_info_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

    返回
    顶部