curl --request POST \
--url https://api.shipbob.com/2025-07/shipment:batchUpdateTrackingUpload \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"is_tracking_uploaded": true,
"shipment_ids": [
100810005
]
}'
{
"results": [
{
"error": {
"code": "string",
"message": "string"
},
"isSuccess": true,
"shipmentId": 100810005
}
],
"summary": {
"failed": 0,
"successful": 1,
"total": 1
}
}
Authentication using Personal Access Token (PAT) token
Model for updating tracking upload status for multiple shipments
Success
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.shipbob.com/2025-07/shipment:batchUpdateTrackingUpload \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"is_tracking_uploaded": true,
"shipment_ids": [
100810005
]
}'
{
"results": [
{
"error": {
"code": "string",
"message": "string"
},
"isSuccess": true,
"shipmentId": 100810005
}
],
"summary": {
"failed": 0,
"successful": 1,
"total": 1
}
}