User-1471881183 posted
hello there,
i have a post method like below
[HttpPost]
public string Group(string strIput)
{
string strMessage = string.Empty;
try
{
strMessage = m_db.CreateGroup(strIput);
}
catch (Exception ex)
{
strMessage = ex.Message;
}
return strMessage;
}
its working fine from postman, now i want to access this web api method from Test Project so, i did formated url with query string(No Models) so, may i know how to call this Web Api method with formated query string and get back the output message?