module Brightpearl::APIOperations::Patch

Public Instance Methods

patch(id, params) click to toggle source
# File lib/brightpearl/api_operations/patch.rb, line 4
def patch(id, params)
  send_request(path: "#{resource_path}/#{id}", method: :patch, body: params)
end