module BoffinIO::APIOperations::Create::ClassMethods

Public Instance Methods

create(params={}, api_key=nil) click to toggle source
# File lib/boffinio/api_operations/create.rb, line 5
def create(params={}, api_key=nil)
  response, api_key = BoffinIO.request(:post, self.url, api_key, params)
  Util.convert_to_boffinio_object(response, api_key)
end