module Recharge::HTTPRequest::Delete

Delete a record for included/extended entity

Arguments

id (Fixnum)

ID of the record to delete

Returns

An instance of the deleted entity

Errors

Recharge::ConnectionError, Recharge::RequestError

Public Instance Methods

delete(id) click to toggle source
# File lib/recharge/http_request.rb, line 167
def delete(id)
  id_required!(id)
  DELETE(join(id))
end