skip to Main Content

ASP.NET Core Web API send 400 Bad Request for request client

I have two ASP.NET Core Web API projects called app.account and core.account. I the both projects have some testing API endpoint like this. In app.account: namespace app.account.Controllers { [ApiController] public class SubInteractiveStatementController : ControllerBase { [HttpPost] [Route("account/istatement")] public async Task<ActionResult>…

VIEW QUESTION
Back To Top
Search