Hi I am getting error,I cant call my API
My Client
var client = new FhirClient(endpoint);
var query = new string[] { "resource=Rob&id=25" };
var bundle = client.SearchById("Patient","50");
"Operation was unsuccessful because of a client error (NotFound). Body has no content.' "
MyAPI
[HttpGet, Route("{ResourceName}")]
public Bundle SearchById(string resource, string id)
{
}