curl --request POST \
--url https://api.shipbob.com/2025-07/shipment:batchCancel \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'shipbob_channel_id: <shipbob_channel_id>' \
--data '{
"shipment_ids": [
0
]
}'
{
"results": [
{
"action": "Cancel",
"is_success": true,
"reason": "string",
"shipment_id": 0
}
]
}
Authentication using Personal Access Token (PAT) token
Channel ID for Operation
The shipment IDs to cancel
Model for cancel multiple shipments at once
Success
Was this page helpful?
curl --request POST \
--url https://api.shipbob.com/2025-07/shipment:batchCancel \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'shipbob_channel_id: <shipbob_channel_id>' \
--data '{
"shipment_ids": [
0
]
}'
{
"results": [
{
"action": "Cancel",
"is_success": true,
"reason": "string",
"shipment_id": 0
}
]
}