Reputation: 423
I'm trying to post to Web Api Values controller via post:
// POST api/values
public void Post([FromBody]string value)
{
}
but the value is always null.
I'm using Postman to post this in body: {"test"}
set as Json(application/json)
Upvotes: 0
Views: 901