I'm trying to adjust the timeout for a single endpoint in my server. I do not need the time-out to be increased for any other section of the server, this particular endpoint just handles large requests sometimes.
[HttpPost]
[Route("PreventativeMaintenance/Tasks/Route/{routeID}/Complete")]
[ActionAuthorize("update")]
public HttpResponseMessage CompleteRouteTasks(Guid routeID, RouteCompletedDto dto)
{
_taskService.CompleteRouteTasks(routeID, dto.TaskIDs, dto.CompletedOn);
return Request.CreateResponse(HttpStatusCode.OK);
}