Site Logo

Get a Manifest

This GET call will return information about a manifest, like its creation date, ship date, and more. The response will include an object containing a link to download the manifest file.

Field NameTypeRequired?Description
manifest_idstringyesThe Manifest ID
(se_id) [ 1 .. 25 ] characters
Example: se-28529731

Example

This example shows how to successfully call the GET /v1/manifests/:manifest_id endpoint.

Example Request

GET /v1/manifests/:manifest_id

1
2
3
GET /v1/manifests/:manifest_id HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Example Response

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"manifest_id": "se-28529731",
"form_id": "se-28529731",
"created_at": "2019-07-12T13:37:39.050Z",
"ship_date": "2019-07-12T13:37:39.050Z",
"shipments": 100,
"label_ids": [
"se-28529731"
],
"warehouse_id": "se-28529731",
"submission_id": "9475711899564878915476",
"carrier_id": "se-28529731",
"manifest_download": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
}
}