I should elaborate on this response. WebAPI is trying to model bind your "someId" parameter, and looks for a plain/text formatter and pukes since there is not one available. If you remove your parameter (a parameterless Post method) then it works fine.
davebettin
Member
313 Points
94 Posts
Re: Model binding on POST
Mar 04, 2012 02:57 AM|LINK
I should elaborate on this response. WebAPI is trying to model bind your "someId" parameter, and looks for a plain/text formatter and pukes since there is not one available. If you remove your parameter (a parameterless Post method) then it works fine.
@dbettin