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

Authorizations

Authorization
string
header
required

Authentication using Personal Access Token (PAT) token

Body

application/json

Model for updating tracking upload status for multiple shipments

Response

200
application/json

Success

The response is of type object.