文档中心 > API类目 > 五道口API

alibaba.tcls.aelophy.merchant.id.mix (商家用户id混淆)

商家用户id混淆

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
union_uid String 必须 uid_123123 商家用户id

响应参数

名称 类型 示例值 描述
api_result ApiResult 接口返回model
  • └ success
  • Boolean
  • true
  • 获取mixId成功
  • └ err_code
  • String
  • ILLEGAL_PARAMETERS
  • 错误码
  • └ err_msg
  • String
  • 参数非法
  • 错误信息
  • └ model
  • String
  • asd11xxxx12wasdfc
  • 返回混淆id

请求示例

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

响应示例

  • XML示例
  • JSON示例
<alibaba_tcls_aelophy_merchant_id_mix_response>
    <api_result>
        <success>true</success>
        <err_code>ILLEGAL_PARAMETERS</err_code>
        <err_msg>参数非法</err_msg>
        <model>asd11xxxx12wasdfc</model>
    </api_result>
</alibaba_tcls_aelophy_merchant_id_mix_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

返回
顶部