Reputation: 581
Currently In my Java code we have UPS hyperlink which have some parameters including tracking number when we click on that link it takes us to UPS site where we can the status for that passed tracking number. I want the same functionality for FedEx tracking numbers too .Is there any way I can achieve it ?
Upvotes: 0
Views: 1063
Reputation: 5560
You can just pass it on in query string in the URL:
https://www.fedex.com/apps/fedextrack/?action=track&trackingnumber=[YOUR_CODE_HERE]
Upvotes: 2