By default, the Web API returns a service document in AtomPub format. To request JSON, you can add the following header to the HTTP request:
Accept: application/json
or you can completely remove xml multimedia type support in Global.asax
public class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
var appXmlType = config.Formatters.XmlFormatter.SupportedMediaTypes.FirstOrDefault(t => t.MediaType == "application/xml");
config.Formatters.XmlFormatter.SupportedMediaTypes.Remove(appXmlType);
}
}
source
share