I am trying to create an object via an API, i.e. no forms are required, should I be doing MyModel.new(:name => params[:name]) or MyModel.create(:name => params[:name]) ?
Assume I have resources : my_models in routes
I checked and I see that methods can use the params hash ok.