I have been using Hang-fire in our project but had a question, Can i call a hangfire Recurring Job 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 Job to run. Is this Possible?
Thanks
Yes you can certainly perform hangfire functions by calling an API. Here is the function for creating a Hangfire job as listed on the front page of hangfire site.
The URL you call should be an endpoint which you can pass parameters to. Then if hangfire is set up correctly it should be like any other application.