页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

Description

该接口通过manifestno 获取尾程清单文件。This interface is for get lastmile manifest file though Manifest NO

Path

HTTP Verb URL
Post/services/shipper/lastMileManifest

Request content


A sequence of Manifest NO numbers in JSON format. Manifest NO can be used, up to 30
at a time.Note.


Request sample

代码块
languagejs
borderStylesolid
firstline1
titleRequest
linenumberstrue
[
    {
        "manifestNo": "test001"
        }
]

Response message


代码块
languagejava
firstline1
titleResponse
linenumberstrue
{
    "status":"Success",
    "errors":null,
    "data":[
        {
            "manifetsNo":"test001",
             "lastMileManifestB64":"base64 string"
        }
    ]
}

...