v1
latestOpenAPI 3.0.02026-07-1397337495.2 KBbatches
List Batches
List Batches associated with your Shipengine account
get/v1/batches
Query parameters
status'open' | 'queued' | 'processing' | 'completed' | 'completed_with_errors' | 'archived' | 'notifying' | 'invalid'
The possible batch status values
pageinteger
Return a specific page of results. Defaults to the first page. If set to a number that's greater than the number of pages of results, an empty page is returned.
page_sizeinteger
The number of results to return per response.
sort_dir'asc' | 'desc'
Controls the sort order of queries
| Value | Description |
|---|---|
| asc | Return results in ascending order |
| desc | Return results in descending order |
Controls the sort order of the query.
batch_numberstring
Batch Number
created_at_startstring date-time
Only return batches that were created on or after a specific date/time
created_at_endstring date-time
Only return batches that were created on or before a specific date/time
processed_at_startstring date-time
Only return batches that were processed on or after a specific date/time
processed_at_endstring date-time
Only return batches that were processed on or before a specific date/time
sort_by'ship_date' | 'processed_at' | 'created_at'
The possible batches sort by values
Response
The request was a success.
Example response
{
"batches": [
{
"batch_id": "se-28529731",
"batch_notes": "Batch for morning shipment",
"created_at": "2018-09-23T15:00:00.000Z",
"processed_at": "2018-09-23T15:00:00.000Z",
"errors": 2,
"process_errors": [
{
"message": "Body of request cannot be null.",
"carrier_id": "se-28529731",
"carrier_code": "dhl_express",
"field_name": "shipment.ship_to.phone_number"
}
],
"warnings": 1,
"completed": 1,
"forms": 3,
"count": 2,
"batch_shipments_url": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
},
"batch_labels_url": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
},
"batch_errors_url": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
},
"label_download": {
"href": "http://api.shipengine.com/v1/labels/se-28529731",
"pdf": "http://api.shipengine.com/v1/labels/se-28529731",
"png": "http://api.shipengine.com/v1/labels/se-28529731",
"zpl": "http://api.shipengine.com/v1/labels/se-28529731"
},
"form_download": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
},
"paperless_download": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
}
}
],
"total": 10,
"page": 1,
"pages": 10,
"links": {
"first": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
},
"last": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
},
"prev": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
},
"next": {
"href": "http://api.shipengine.com/v1/labels/se-28529731"
}
}
}