Why am I getting 404 not found in Postman when running a POST API?
For referenece, I have attached the code for Customer Modal, Customer controller (Post request) and postman response, Customer Controller: (post Req) [HttpPost] public async Task<ActionResult<Customer>> PostCustomer(Customer customer) { if (_context.Customers == null) { return Problem("Entity set 'SalesContext.Customers' is null."); }…