Method: Bandwidth::HttpClient#patch
- Defined in:
- lib/bandwidth/http/http_client.rb
#patch(query_url, headers: {}, parameters: {}) ⇒ Object
Get a PATCH HttpRequest object.
83 84 85 86 87 88 89 90 |
# File 'lib/bandwidth/http/http_client.rb', line 83 def patch(query_url, headers: {}, parameters: {}) HttpRequest.new(HttpMethodEnum::PATCH, query_url, headers: headers, parameters: parameters) end |