文档中心 > API类目 > 零售终端API

tmall.nrt.merchant.signing.status.get (商户进件状态查询)

商户进件状态查询

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
store_id Number 可选 1001 摊位/门店id
contractor_type String 可选 MALL 签约主体类型:卖场/摊位
channel_product Number 可选 8 渠道产品(比如:8直付通,14云资通)

响应参数

名称 类型 示例值 描述
result ResultDo 接口返回model
  • └ success
  • Boolean
  • false
  • 是否成功
  • data
  • SigningStatusRespDto
  • 系统自动生成
  • └ fail_reason
  • String
  • 营业执照不合法
  • 审核失败原因
  • └ ext_info
  • String
  • {"cardAliasNo":"1001","smid":"1001"}
  • 申请单信息
  • └ apply_time
  • String
  • 2019-08-07
  • 申请单创建时间
  • └ status
  • String
  • 99
  • 申请单状态
  • └ merchant_name
  • String
  • 摊位1
  • 商户名称
  • └ ip_role_id
  • String
  • 1001
  • smid
  • └ err_msg
  • String
  • 参数异常
  • 错误信息
  • └ err_code
  • String
  • INVALID_PARAM
  • 错误码

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
TmallNrtMerchantSigningStatusGetRequest req = new TmallNrtMerchantSigningStatusGetRequest();
req.setStoreId(1001L);
req.setContractorType("MALL");
req.setChannelProduct(8L);
TmallNrtMerchantSigningStatusGetResponse rsp = client.execute(req, sessionKey);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<tmall_nrt_merchant_signing_status_get_response>
    <result>
        <success>false</success>
        <data>
            <fail_reason>营业执照不合法</fail_reason>
            <ext_info>{&quot;cardAliasNo&quot;:&quot;1001&quot;,&quot;smid&quot;:&quot;1001&quot;}</ext_info>
            <apply_time>2019-08-07</apply_time>
            <status>99</status>
            <merchant_name>摊位1</merchant_name>
            <ip_role_id>1001</ip_role_id>
        </data>
        <err_msg>参数异常</err_msg>
        <err_code>INVALID_PARAM</err_code>
    </result>
</tmall_nrt_merchant_signing_status_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

返回
顶部