user970500
user970500

Reputation: 581

How to call Fedex tracking number lookup Service?

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

Answers (1)

Josep Valls
Josep Valls

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

Related Questions