Is there a way in Asp .Net Core to call my API recursively every 30 minutes?
The situation is the application and the app status payload is being passed at the same time. Some instances, the application is passed second, thus the app status does not have an application to reference making it a fail.
I have an ssms job that resets the status, but I need to retransfer them so I need to schedule call this function.
//[Obsolete("The appStat transfer is done real time. Used Internally only")]
[CustomRoute(Constants.api_transfer_app_status)]
[HttpPost]
public async Task<IActionResult> TransferAppStatusData()
{
MessageResponseModel response = await _arribaDBService.TransferAppStatusData2();
return new JsonResult(response);
}