Everything You Need to Know About PayPal Tracking Sync
You ship an order. The buyer pays through PayPal. And then you wait, hoping PayPal releases your money before the 21-day hold is up.
There is a way to skip most of that waiting. It is called PayPal Tracking Sync, and a lot of sellers either do not know it exists or have it set up wrong.
This guide covers everything: what tracking sync actually does, how to turn it on for the platform you use, what problems it solves, and what it cannot do. By the end, you will know exactly how to set it up and what to expect.

What Is PayPal Tracking Sync?
PayPal Tracking Sync is a feature that automatically sends your shipment tracking numbers from your store or shipping tool directly into your PayPal transactions.
Without sync, you have to go into PayPal manually, find each transaction, and type in the tracking number yourself. That works fine for a few orders a day. But once you are shipping dozens of orders, it becomes a real problem.
With sync turned on, the tracking number goes into PayPal the moment you fulfill an order. No copy-pasting. No logging into two different systems. It just happens.
Why Does Tracking Sync Matter?
Three reasons.
It gets your money faster. PayPal holds funds until it can confirm delivery. When tracking is added automatically and the carrier marks the package as delivered, PayPal releases your funds, often within one business day. Without tracking, you could wait up to 21 days.
It protects you in disputes. When a buyer says they never got their package, PayPal checks for tracking. If the tracking shows delivery to the buyer's address, PayPal can close the dispute in your favor automatically. No tracking means you have to fight the dispute manually, and often you lose.
It reduces your reserve. PayPal watches how consistently you add tracking. Sellers who track every shipment are seen as lower risk. Over time, this can reduce or even remove the reserve PayPal holds on your account.
How PayPal Tracking Sync Works
When you fulfill an order in your store or print a shipping label, your platform or tool sends a message to PayPal in the background. That message includes three things: the PayPal transaction ID, the carrier name, and the tracking number.
PayPal matches that data to the right payment and saves the tracking information. Then it monitors the carrier's tracking feed. When the carrier confirms delivery, PayPal triggers the fund release.
The whole process happens without you doing anything after the initial setup.
PayPal Tracking Sync by Platform
Here is how to set it up depending on where you sell.
Shopify
Shopify has a native integration with PayPal that automatically syncs tracking information once your PayPal account is connected. There is no manual toggle required.
How it works:
Go to your Shopify admin → Settings → Payments → PayPal → Manage and make sure your PayPal account is connected.

After that, whenever you fulfill an order and add a valid tracking number, Shopify will automatically send it to PayPal.
To ensure tracking sync works properly:
- The order must be paid via PayPal
- A valid tracking number must be added during fulfillment
- The carrier should be correctly selected or auto-detected
Note: Using a PayPal Business account is recommended for better reliability and full feature access.
WooCommerce
WooCommerce does not have a built-in tracking sync the same way Shopify does. You need a plugin.
Two reliable options:
PayPal for WooCommerce (by Angell EYE) is a popular plugin that handles PayPal payments and includes tracking sync. When an order status changes to "completed" in WooCommerce, it pushes the tracking number to PayPal.
WooCommerce PayPal Tracking is a dedicated plugin focused specifically on this feature. It hooks into your order fulfillment process and sends tracking data to PayPal through the API.
How to set it up (using PayPal for WooCommerce):
- Install and activate the plugin from the WooCommerce plugin directory.
- Go to WooCommerce > Settings > Payments and configure your PayPal credentials.

- Enable the tracking sync option in the plugin settings.
- When you fulfill orders and add tracking numbers, the plugin handles the rest.
eBay
eBay has a direct integration with PayPal tracking (through PayPal's parent company Braintree and eBay's managed payments system). When you mark an eBay order as shipped and add tracking, it syncs to the payment record automatically.
If you are still on an older eBay setup with a separate PayPal connection, check your eBay account settings under Selling > Postage Preferences to confirm tracking upload is enabled.
BigCommerce
BigCommerce supports PayPal tracking sync through its native PayPal integration.
- Go to Store Setup > Payments in your BigCommerce dashboard.
- Find PayPal and click Configure.
- Make sure the PayPal account is connected and the tracking data option is enabled.

BigCommerce sends tracking automatically when an order is marked as shipped with a tracking number included.
Etsy
Etsy does not have a direct native PayPal tracking sync. Etsy uses its own payment system (Etsy Payments) for most transactions, so many Etsy sellers do not receive PayPal payments directly.
If you have PayPal enabled as a payment option on Etsy and need tracking sync, a third-party tool like Shipstation is the best path (more on that below).
Shipstation
Shipstation is a shipping management tool that connects to most major selling platforms and carriers. It also has a direct PayPal integration.
When you use Shipstation to print a label, it automatically pushes the tracking number to PayPal for any transaction that came through PayPal. This works across all your connected stores at once.
How to connect Shipstation to PayPal:
- In Shipstation, go to Account Settings > Selling Channels.
- Click Connect a Store or Marketplace.

- Find PayPal and follow the authorization steps.
- Once connected, tracking syncs automatically for every shipped order.
This is especially useful if you sell on multiple platforms, because Shipstation becomes the single source that pushes tracking to PayPal regardless of where the sale came from.
Aftership
Aftership is a tracking and shipment monitoring tool. It can push tracking data to PayPal through its integrations.
Go to the Integrations section in your Aftership account, find PayPal, and connect your account. Once linked, tracking numbers added in Aftership get sent to the matching PayPal transactions.
Using PayPal's Tracking API Directly
If you have a custom-built store or a developer on your team, you can skip third-party tools entirely and send tracking data straight to PayPal using their API.
The endpoint is:
POST https://api-m.paypal.com/v1/shipping/trackers
A basic request looks like this:
{
"transaction_id": "YOUR_PAYPAL_TRANSACTION_ID",
"tracking_number": "1Z999AA1012345678",
"status": "SHIPPED",
"carrier": "UPS"
}
You need to authenticate first using PayPal's OAuth system to get a Bearer token. Then include that token in your request header.
For bulk uploads, PayPal also has a batch endpoint:
POST https://api-m.paypal.com/v1/shipping/trackers-batch
This accepts up to 20 tracking entries in a single call. Useful if you run an end-of-day fulfillment process and want to push all that day's tracking numbers at once.
One important detail: the carrier value in your request must match PayPal's accepted carrier list exactly. If you send "FEDEX" and PayPal expects "FedEx", it may return an error or fail to verify. Always check the carrier codes in PayPal's developer documentation before building your integration.
Which Carriers Work With PayPal Tracking Sync?
PayPal can verify delivery from most major carriers globally. Here are the commonly used ones:
- USPS
- UPS
- FedEx
- DHL Express
- DHL eCommerce
- Australia Post
- Canada Post
- Royal Mail
- China Post
- 4PX
- Yanwen
- SF Express
If your carrier is not on PayPal's accepted list, the tracking number will be saved but PayPal cannot automatically verify delivery status. In that case, the fund hold may not be released early, and disputes still need to be handled manually.
The full carrier list is in PayPal's developer documentation under the Tracking API reference section.
Common Problems With PayPal Tracking Sync (And How to Fix Them)
Tracking is not showing up in PayPal
Check these things first:
- Is the PayPal account connected to your platform actually your business account?
- Does the tracking number match exactly what the carrier has on file?
- Did you add the tracking number before or after marking the order fulfilled? Some platforms only sync if tracking is added during fulfillment, not after.
- Is the sync feature actually turned on in your platform settings?
PayPal shows the tracking but funds are still on hold
This is normal. Tracking being in PayPal does not release funds automatically. PayPal waits for the carrier to confirm delivery. Once that delivery scan happens, PayPal usually releases funds within one business day.
If the package is still in transit, the hold stays. Check the tracking directly with the carrier to see where it is.
Wrong carrier was synced
If your platform sends the wrong carrier name to PayPal, the tracking verification fails. This often happens with multi-carrier shipping tools that map carrier names automatically.
Go into the transaction in PayPal, check what carrier was recorded, and compare it to what carrier actually shipped the package. If they do not match, you may need to update the tracking manually in PayPal for that transaction.
Tracking sync works for some orders but not others
This usually happens when some orders were fulfilled before tracking sync was turned on, or when a specific product was fulfilled through a different process that does not trigger the sync.
For orders that did not sync, add tracking manually in PayPal. Going forward, make sure every fulfillment flow in your store triggers the sync correctly.
What PayPal Tracking Sync Cannot Do
It is worth being clear about the limits.
It cannot guarantee instant fund release. Funds release after delivery confirmation from the carrier, not just because tracking was added. If a package takes three weeks to arrive, your money stays on hold for three weeks even with perfect tracking sync.
It cannot help with the wrong delivery address. If the tracking shows delivery but to a different address than what PayPal has on file, the dispute protection may not apply. Always ship to the address PayPal confirmed.
It cannot replace signature confirmation on high-value orders. For orders over $750 in most markets, PayPal's Seller Protection requires signature confirmation. A regular delivery scan is not enough, even with perfect tracking sync.
It cannot fix a dispute that is already escalated to a claim. Once a dispute becomes a formal claim, you need to respond with evidence directly. Tracking helps but does not automatically close escalated claims the same way it closes early disputes.
How Tracking Sync Affects Your PayPal Reserve
PayPal tracks what percentage of your transactions have tracking numbers added. Sellers who consistently add tracking are considered lower risk.
If you have a reserve on your account and you start using tracking sync so that every single order gets tracking added automatically, you are building the kind of track record PayPal looks for when deciding whether to reduce a reserve.
This does not happen overnight. PayPal reviews reserves periodically, and you can also contact them to ask for a review after 60 to 90 days of clean tracking data. But consistent tracking is one of the most concrete things you can point to when making that request.
Manual vs. Sync: When to Use Each
Situation | Best Option |
Under 10 orders per day | Manual is fine |
10 to 50 orders per day | Platform sync (Shopify, WooCommerce plugin) |
50 or more orders per day | Shipstation or API integration |
Selling on multiple platforms | Shipstation or API |
Custom-built store | PayPal Tracking API |
New seller, testing the waters | Manual first, then set up sync |
Quick Setup Checklist
Before you consider tracking sync fully set up, make sure all of these are true:
- Your PayPal business account is connected to your store or tool
- The sync feature is turned on in your platform settings
- You tested it with one real order and confirmed the tracking appeared in PayPal
- The carrier name in PayPal matches the actual carrier used
- You have a plan for orders that fall outside the sync (manual backup)
Frequently Asked Questions
Does PayPal Tracking Sync work for digital products? No. Digital products have no physical shipment, so there is no tracking number to add. For digital goods, PayPal handles disputes differently. You would need to show proof of delivery through download logs or email confirmation instead.
How long does it take for synced tracking to appear in PayPal? Usually within a few hours of fulfillment. In some cases it can take up to 24 hours depending on the platform and how frequently PayPal's system processes incoming data.
Can I sync tracking for orders that were already fulfilled weeks ago? You can add tracking to older transactions manually in PayPal, but automated sync typically only works for orders going forward from when you turned it on. For past orders, go into each PayPal transaction and add the tracking number by hand.
Does tracking sync work if the buyer paid with a credit card through PayPal? Yes. Tracking sync works regardless of the payment method the buyer used on their end. What matters is that the transaction went through PayPal on your end.
What happens if I sync the wrong tracking number by mistake? Go into the transaction in PayPal and update the tracking number manually. You can edit or add tracking from the transaction detail page. Fix it as soon as you notice, especially if there is an open dispute.
Updated on: 24/04/2026
Thank you!