Site Logo

List Batch Errors

Error handling in batches are handled differently than in a single synchronous request. You must retrieve the status of your batch by getting a batch and getting an overview of the statuses, or you can list errors directly here below to get detailed information about the errors.

Example

GET /v1/batches/:batch_id/errors

Example Request

1
2
3
GET /v1/batches/se-12345/errors HTTP/1.1
Host: api.shipengine.com
API-Key: __YOUR_API_KEY_HERE__

Example Response

1
2
3
4
5
{
"error": "Insufficient account balance",
"shipment_id": "se-12345",
"external_shipment_id": "TestId-1"
}