文档中心 > API类目 > 全球速卖通

aliexpress.taxation.platform.open.get (平台固定参数获取)

Aliexpress开放平台固定参数获取

公共参数

请求参数

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

响应参数

名称 类型 示例值 描述
result ResponseDto 返回结果
  • data
  • PlatformParameterDto
  • 数据
  • └ company_name
  • String
  • 发货人/平台公司名称
  • └ contactor_name
  • String
  • 发货人/平台联系人姓名
  • └ country
  • String
  • 发货人/平台国家
  • └ address
  • String
  • 发货人/平台详细地址
  • └ city
  • String
  • 发货人/平台城市
  • └ country_code
  • String
  • ISO国家编码
  • └ contact_number
  • String
  • 发货人/平台电话
  • └ email_address
  • String
  • 发货人/平台邮箱
  • └ ioss_number
  • String
  • IOSS 平台税号
  • └ error_code
  • String
  • 错误代码
  • └ succeeded
  • Boolean
  • 是否成功
  • └ error_msg
  • String
  • 错误信息

请求示例

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

响应示例

  • XML示例
  • JSON示例
<aliexpress_taxation_platform_open_get_response>
    <result>
        <data>
            <company_name></company_name>
            <contactor_name></contactor_name>
            <country></country>
            <address></address>
            <city></city>
            <country_code></country_code>
            <contact_number></contact_number>
            <email_address></email_address>
            <ioss_number></ioss_number>
        </data>
        <error_code></error_code>
        <succeeded></succeeded>
        <error_msg></error_msg>
    </result>
</aliexpress_taxation_platform_open_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

返回
顶部