module Telnyx::APIOperations::Save::ClassMethods
Public Instance Methods
update(id, params = {}, opts = {})
click to toggle source
Updates an API resource
Updates the identified resource with the passed in parameters.
Attributes¶ ↑
-
id
- ID of the resource to update. -
params
- A hash of parameters to pass to the API -
opts
- A Hash of additional options (separate from the params / object values) to be added to the request. E.g. to allow for the api_key to be overwritten. See {APIOperations::Request.request}.
# File lib/telnyx/api_operations/save.rb, line 18 def update(id, params = {}, opts = {}) params.each_key do |k| if protected_fields.include?(k) raise ArgumentError, "Cannot update protected field: #{k}" end end resp, opts = request(:patch, identified_resource_url(id), params, opts) Util.convert_to_telnyx_object(resp.data, opts) end