POST
/
shipment
/
:bulkUpdateTrackingUpload
curl --request POST \
  --url https://api.shipbob.com/2.0/shipment/:bulkUpdateTrackingUpload \
  --header 'Authorization: <api-key>' \
  --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
  }
}

Authorizations

Authorization
string
header
required

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Body

application/json

Model for updating tracking upload status for multiple shipments

is_tracking_uploaded
boolean

Indicates whether the Shipment was marked with tracking information uploaded to a third-party system where the order originated. Applies to all shipments in shipment_ids

shipment_ids
integer[] | null

Shipment IDs to apply the tracking upload status to

Response

200
application/json
Success
results
object[] | null
summary
object

Was this page helpful?