I\'m getting a 404 error but the problem is solved when I refresh the page.
This url is being called by a service. In this case it always gets error. If I refresh the
try changing
[HttpGet]
to this:
[HttpGet("company/payment/callbackpayments/?data={data}")]
or make sure your controller has /company/payment in a route attribute [Route("company/payment")]
/company/payment
[Route("company/payment")]