I have researched similar threads, such as
What might be wrong with my request?
CodePudding user response:
you have to fix the action
[Route("~/Merge")]
public IActionResult Index(string example)
{
return Ok ( new { example = example } );
}