Notifications
Clear all
Sep 09, 2021 7:00 am
System.CalloutException: Callout from scheduled Apex not supported
1 Reply
Sep 09, 2021 7:05 am
You can't do callouts from a Scheduled apex class:
* Place @future(callout=true) annotation above your callout method, so you can convert it to a future method.
* Schedule the job again.