文档中心 > API类目 > 天猫供应链

alibaba.dchain.aoxiang.industry.waybill.logisticstatus.remark.add (客服增加备注)

客服增加备注

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
tms_order_remark_request TmsOrderRemarkRequest 必须 物流节点回传入参
  • └ seller_id
  • String
  • 必须
  • 22021798371
  • 商家id
  • └ express_code
  • String
  • 必须
  • SF3289473286582
  • 运单号
  • └ request_time
  • Number
  • 必须
  • 1639205668000
  • 业务请求时间戳
  • └ request_id
  • String
  • 必须
  • xx
  • 业务请求ID
  • └ industry
  • String
  • 必须
  • home_improvement
  • 行业
  • └ cp_code
  • String
  • 必须
  • YUELU
  • 服务商code
  • └ operator_name
  • String
  • 必须
  • xxx
  • 操作人
  • └ remark
  • String
  • 可选
  • xxx
  • 备注
  • └ feature
  • String
  • 可选
  • {"a":"b"}
  • 扩展字段

响应参数

名称 类型 示例值 描述
tms_order_remark_response TopResponse 返回结构体
  • └ code
  • String
  • 200
  • 响应码
  • └ message
  • String
  • message
  • 响应信息
  • └ success
  • Boolean
  • true
  • 调用是否成功
  • data
  • TmsOrderRemarkResponse
  • xx
  • 返回值
  • └ error_code
  • String
  • xx
  • 错误码
  • └ message
  • String
  • xx
  • 业务错误信息
  • └ data
  • String
  • xx
  • 业务返回数据

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaDchainAoxiangIndustryWaybillLogisticstatusRemarkAddRequest req = new AlibabaDchainAoxiangIndustryWaybillLogisticstatusRemarkAddRequest();
AlibabaDchainAoxiangIndustryWaybillLogisticstatusRemarkAddRequest.TmsOrderRemarkRequest obj1 = new AlibabaDchainAoxiangIndustryWaybillLogisticstatusRemarkAddRequest.TmsOrderRemarkRequest();
obj1.setSellerId("22021798371");
obj1.setExpressCode("SF3289473286582");
obj1.setRequestTime(1639205668000L);
obj1.setRequestId("xx");
obj1.setIndustry("home_improvement");
obj1.setCpCode("YUELU");
obj1.setOperatorName("xxx");
obj1.setRemark("xxx");
obj1.setFeature("{\"a\":\"b\"}");
req.setTmsOrderRemarkRequest(obj1);
AlibabaDchainAoxiangIndustryWaybillLogisticstatusRemarkAddResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_dchain_aoxiang_industry_waybill_logisticstatus_remark_add_response>
    <tms_order_remark_response>
        <code>200</code>
        <message>message</message>
        <success>true</success>
        <data>
            <error_code>xx</error_code>
            <message>xx</message>
            <data>xx</data>
        </data>
    </tms_order_remark_response>
</alibaba_dchain_aoxiang_industry_waybill_logisticstatus_remark_add_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

返回
顶部