Make generic Skedulo API requests using Salesforce
Making generic requests to the Skedulo API using Salesforce.
You can call the Skedulo API directly from Salesforce custom Apex code through the Skedulo managed package. In particular, there are dedicated APIs to conveniently dispatch jobs and notify resources. All publicly available Skedulo API endpoints are accessible this way, making it easy to dispatch jobs and notify resources from the Salesforce console.
Salesforce requires the following configuration in order to make requests to the Skedulo API from the managed package:
api.skedulo.com
, must be authorized to perform API requests through the Skedulo package.Skedulo_API_Token
as the Admin Setting Name. Copy and paste the API token (generated in Step 1) into the value field of the new record.Skedulo_API_Token_Jti
as the Admin Setting Name. Copy and paste the JTI value of the API token (generated in Step 1) into the value field of the new record.Skedulo_API
, click Edit
and select the Active
checkbox, then click Save.Skedulo exposes a global
class and methods to enable code from outside the managed package to call API endpoints. Input definitions are either Notification
requests that send notifications to resources, or Generic
(non-notification) API calls.
Making generic requests to the Skedulo API using Salesforce.
Dispatch jobs and notify resources from Salesforce using the Skedulo API.
Was this page helpful?