I take a look on Angular API for $resource and I didn\'t find some way to send a Request Body to a RESTful service.
Request Body
I know this is possible using $http
Building on @gargc's answer, you can pass parameters and a body to a resource's method:
@gargc
myResource.save({ param: myParam }, myObject);