获取店铺信息

更新时间:2024-01-12 02:38:26下载pdf

本文介绍获取店铺信息的 API。

接口描述

根据店铺唯一 Code,获取店铺币种、已绑定的 App 等信息。

接口地址

GET: /v1.0/sellercenter/mall/info/{mall_code}

请求参数

参数名类型参数位置是否必填说明
mall_codeStringuritrue商城编号
site_codeStringquerytrue国家码

返回参数

参数名类型说明
resultMallOpenApiInfoVO返回结果

result 说明

参数名类型说明
mall_codeString商城编号
mall_nameString商城名称
logo_iconString商城图标
bind_app_infoList已绑定的商城信息
paid_typesList商城支持的支付方式。
  • wechat_pay:微信支付
  • alipay:支付宝
  • stripe:Stripe 支付
  • payPal:PayPal 支付
  • paytm:Paytm 支付
  • cod:货到付款
currencyString币种
statusInteger商城状态。
  • 0: 禁用
  • 1:正常

bind_app_info 说明

参数名类型说明
nameStringApp 名称
statusIntegerApp 状态。
  • 0: 禁用
  • 1:正常

请求示例

GET: /v1.0/sellercenter/mall/info/8h4tiuredd***?site_code=CN

返回示例

{
    "result": {
        "mall_code": "my-mallCode",
        "logo_icon": "商品logo",
        "paid_types": [
            "wechat_pay"
        ],
        "bind_app_info": [
            {
                "name": "appName",
                "status": 1
            }
        ],
        "mall_name": "商城名称",
        "currency": "",
        "status": 1
    },
    "t": 1624957508619,
    "success": true
}

错误码

参考 错误码

错误码 | 错误码 | 错误信息 | 说明 | | --- | --- | --- | | 2000000 | params error | 参数错误 | | 2001000 | shop does not exist | 店铺不存在 |