cutOutOrder (截单上架)

请求地址

环境 HTTP请求地址
接口地址 请联系业务人员

请求参数

名称 类型 是否必须 长度 示例值 更多限制 描述
apiKey String Y 64 货主ApiKey
source String Y 2 来源 01淘宝零售02淘宝分销03拍拍04京东SOP 05京东LBP 06 eBay 07其他 08一号店09亚马逊10速卖通
sourceId String Y 230 来源单号
cutReason String Y 255 截单上架的理由

响应参数

名称 类型 关联数据结构 描述
isSuccess Boolean 操作是否成功 true成功false失败
errorCode String 错误代码
msg String 若接口调用失败, 返回失败的原因

请求示例

  • JAVA
  • .NET
    String apiKey="**************";
	JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
    factory.setServiceClass(com.xld.client.OrderWS.class);
    factory.setAddress("http://store.kjy.cn/ecscm/services/orderService?wsdl");
    com.xld.client.OrderWS query    =(com.xld.client.OrderWS)
    factory.create();
	com.xld.client.Result result=query.cutOutOrder(apiKey, 
    "01", "89562234", "不小心,订单拍错了");
    

响应示例

  • XML示例
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns1:cutOutOrderResponse xmlns:ns1="http://outservice.ws.xld.com/">
         <return>
            <isSuccess>true</isSuccess>
            <msg>Success.</msg>
         </return>
      </ns1:cutOutOrderResponse>
   </soap:Body>
</soap:Envelope>

DEMO下载