取消发货订单

来源:互联网 发布:淘宝联盟是什么意思啊 编辑:程序博客网 时间:2024/06/02 11:11
  • 名称 CancelOrderInfo描述取消发货订单接口地址Order/CancelOrderInfoHTTP请求方式POST
  • 请求参数类型描述paramOrderCannelParameters
  • 请求参数示例(Request body formats)

    application/json, text/json

    Sample:
    {
    • -
      "gids": [
      • "sample string 1"
      ],
    • "token": "【登录标识】,字符串类型"
    }

    application/xml, text/xml

    Sample:
    View Raw Code?
    1
    2
    3
    4
    5
    6
    <OrderCannelParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SCM.TMS7.WebApi.Common"><token>【登录标识】,字符串类型</token><gids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"><d2p1:string>sample string 1</d2p1:string></gids></OrderCannelParameters>

    application/x-www-form-urlencoded

    Sample:

    Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'OrderCannelParameters'.

  • 返回数据示例(Request body formats)

    application/json, text/json

    Sample:
    {
    • "resultCode": "【RESULTCODE】",
    • "flag": true,
    • "data": { },
    • "msg": "【MSG】,字符串类型,消息",
    • "token": "【登录标识】,字符串类型,登录凭证",
    • "ttid": "【租户ID】,字符串类型,租户ID",
    • "domain": "【域】,字符串类型,当前域",
    • "transactionId": "160930103909056853"
    }

    application/xml, text/xml

    Sample:
    View Raw Code?
    1
    2
    3
    4
    5
    6
    7
    8
    9
    <ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Quantum.FrameWorkCore.BaseClass"><data /><domain>【域】,字符串类型,当前域</domain><flag>true</flag><msg>【MSG】,字符串类型,消息</msg><resultCode>1</resultCode><token>【登录标识】,字符串类型,登录凭证</token><ttid>【租户ID】,字符串类型,租户ID</ttid></ApiResult>
0 0