function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Donny ReblitzDonny Reblitz 

Apex Classes - Testing Connectivity

I am trying to setup an integration between FedEx and Salesforce so that tracking information (delivery status, delivered time, signed by, etc.) is brought in real-time from FedEx based on tracking #'s that are added to a custom object in Salesforce. I've gone so far as downloading the WSDL from FedEx and generating the Apex Classes. How do I now schedule a class that runs every 15-30 minutes or so to pull in the relevant information from FedEx? Apologize in advance for what may be a basic question but trying to stumble through this integration and hoping the community can help.
Shawn Reichner 29Shawn Reichner 29
The only way I know how this can be somewhat accomplished is to make your class schedulable which is a tag to your class method which you can find online in many places, but I dont think this will help you much if you need the job to run every 15-30 minutes as scheduled jobs will only allow you to choose once a day or a month. 

You may be able to create many scheduled jobs starting at intervals, give that a try.

Shawn