module Vhx::ApiOperations::Delete::ClassMethods

Public Instance Methods

delete(identifier, payload = {}, headers = {}) click to toggle source
# File lib/vhx/utilities/api_operations/delete.rb, line 5
def delete(identifier, payload = {}, headers = {})
  Vhx.connection.delete(
    get_hypermedia(identifier),
    payload,
    headers,
  )
end