My WebApi has methods that look like the method below. Is there a way to provide input examples using Swashbuckler?
public UserModel Login([FromBody] JObject data)
{
dynamic json = data;
string sdkversion = (string) json.sdkversion;
string loginid = json.loginid;
string password = json.password;
string ipaddress;
string jsonipaddress = (string)json.ipaddress;
string hostname = HttpContext.Current.Request.UserHostName;
string useragent;
useragent = (string)json.useragent;
Do stuff...
}