Call Hangfire Job (Recurring Job) from external API

I have been using Hang-fire in our project but had a question, Can i call a hangfire Recurring Job(Poject) from an API?

For Example: http://devmyproject.com/projectname/recurring is the url for Hangfire web application to get recurring job. Now from my webApi project i want to call this Url and invoke a recurring Job to run. Is this Possible?

Thanks

You can use RecurringJob.Trigger(recurringJobId) to manually start recurring job.