module Queenbee::APIOperations::Delete::ClassMethods

Public Instance Methods

delete(id, token = nil) click to toggle source
# File lib/queenbee/api_operations/delete.rb, line 5
def delete(id, token = nil)
  url = self.url + "/" + id
  response, token = Queenbee.request(:delete, url, token)
  response
end