I am using ActiveResource to get and post resources from an external API. Even though that in the logs I can see the calls that are being performed, I fail to see the params. Shouldn't the params hash be printed by default?
How/what should I add to be able to see them?
ActiveResource Post call syntax is:
post(your_custom_method_name, options={}, body='')
Here options is query parameter
Ex:
Customer.post(:bulk_import, {}, { new_customers: new_customers}.to_json)