Method: Uber::API::Requests#trip_update
- Defined in:
- lib/uber/api/requests.rb
#trip_update(request_id, status) ⇒ Object
38 39 40 41 42 43 44 45 |
# File 'lib/uber/api/requests.rb', line 38 def trip_update(request_id, status) perform_with_object( :put, "v1/sandbox/requests/#{request_id}", { status: status }, Request ) end |