New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

get_around_owner

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

get_around_owner

  • 1.0.8
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

get_around_owner

GetAroundOwner - the Ruby gem for the Getaround Owner API

Quick Start The Owner API uses the JSON format, and must be accessed over a secure connection. Let’s assume that the access token provided by your account manager is “TOKEN”. Here’s how to get the list of ids of all your invoices from the first week of August with a shell script: bash query=\"end_date=2018-08-08T00%3A00%3A00%2B00%3A00&start_date=2018-08-01T00%3A00%3A00%2B00%3A00\" curl -i \"https://api-eu.getaround.com/owner/v1/invoices?${query}\" \\ -H \"Authorization: Bearer TOKEN\" \\ -H \"Accept:application/json\" \\ -H \"Content-Type:application/json\" And here’s how to get the invoice with the id 12345: bash curl -i \"https://api-eu.getaround.com/owner/v1/invoices/12345\" \\ -H \"Authorization: Bearer TOKEN\" \\ -H \"Accept: application/json\" \\ -H \"Content-Type: application/json\"\" See the endpoints section of this guide for details about the response format. Dates in request params should follow the ISO 8601 standard. # Authentication All requests must be authenticated with a bearer token header. You token will be sent to you by your account manager. Unauthenticated requests will return a 401 status. # Pagination The page number and the number of items per page can be set with the “page” and “per_page” params. For example, this request will return the second page of invoices, and 50 invoices per page: https://api-eu.getaround.com/owner/v1/invoices?page=2&per_page=50 Both of these params are optional. The default page size is 30 items. The Getaround Owner API follows the RFC 8288 convention of using the Link header to provide the next page URL. Please don't build the pagination URLs yourself. The next page will be missing when you are requesting the last available page. Here's an example response header from requesting the second page of invoices https://api-eu.getaround.com/owner/v1/invoices?page=2&per_page=50 Link: <https://api-eu.getaround.com/owner/v1/invoices?page=3&per_page=50>; rel=\"next\" # Throttling policy and Date range limitation We have throttling policy that prevents you to perform more than 100 requests per min from the same IP. Also, there is a limitation on the size of the range of dates given in params in some requests. All requests that need start_date and end_date, do not accept a range bigger than 30 days. # Webhooks Getaround can send webhook events that notify your application when certain events happen on your account. This is especially useful to follow the lifecycle of rentals, tracking for example bookings or cancellations. ### Setup To set up an endpoint, you need to define a route on your server for receiving events, and then <a href="mailto:owner-api@getaround.com">ask Getaround to add this URL to your account. To acknowledge receipt of a event, your endpoint must: - Return a 2xx HTTP status code. - Be a secure https endpoint with a valid SSL certificate. ### Testing Once Getaround has set up the endpoint, and it is properly configured as described above, a test ping event can be sent by clicking the button below: <form action="/docs/api/owner/fire_ping_webhook" method="post"><input type="submit" value="Send Ping Event"> You should receive the following JSON payload: json { \"data\": { \"ping\": \"pong\" }, \"type\": \"ping\", \"occurred_at\": \"2019-04-18T08:30:05Z\" } ### Retries Webhook deliveries will be attempted for up to three days with an exponential back off. After that point the delivery will be abandoned. ### Verifying Signatures Getaround will also provide you with a secret token, which is used to create a hash signature with each payload. This hash signature is passed along with each request in the headers as X-Drivy-Signature. Suppose you have a basic server listening to webhooks that looks like this: ruby require 'sinatra' require 'json' post '/payload' do push = JSON.parse(params[:payload]) \"I got some JSON: #{push.inspect}\" end The goal is to compute a hash using your secret token, and ensure that the hash from Getaround matches. Getaround uses an HMAC hexdigest to compute the hash, so you could change your server to look a little like this: ruby post '/payload' do request.body.rewind payload_body = request.body.read verify_signature(payload_body) push = JSON.parse(params[:payload]) \"I got some JSON: #{push.inspect}\" end def verify_signature(payload_body) signature = 'sha1=' + OpenSSL::HMAC.hexdigest(OpenSSL::Digest.new('sha1'), ENV['SECRET_TOKEN'], payload_body) return halt 500, \"Signatures didn't match!\" unless Rack::Utils.secure_compare(signature, request.env['HTTP_X_DRIVY_SIGNATURE']) end Obviously, your language and server implementations may differ from this code. There are a couple of important things to point out, however: No matter which implementation you use, the hash signature starts with sha1=, using the key of your secret token and your payload body. Using a plain == operator is not advised. A method like secure_compare performs a "constant time" string comparison, which renders it safe from certain timing attacks against regular equality operators. ### Best Practices - Acknowledge events immediately. If your webhook script performs complex logic, or makes network calls, it’s possible that the script would time out before Getaround sees its complete execution. Ideally, your webhook handler code (acknowledging receipt of an event by returning a 2xx status code) is separate of any other logic you do for that event. - Handle duplicate events. Webhook endpoints might occasionally receive the same event more than once. We advise you to guard against duplicated event receipts by making your event processing idempotent. One way of doing this is logging the events you’ve processed, and then not processing already-logged events. - Do not expect events in order. Getaround does not guarantee delivery of events in the order in which they are generated. Your endpoint should therefore handle this accordingly. We do provide an occurred_at timestamp for each event, though, to help reconcile ordering.

This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.8
  • Build package: io.swagger.codegen.v3.generators.ruby.RubyClientCodegen

Installation

Build a gem

To build the Ruby code into a gem:

gem build get_around_owner.gemspec

Then either install the gem locally:

gem install ./get_around_owner-1.0.8.gem

(for development, run gem install --dev ./get_around_owner-1.0.8.gem to install the development dependencies)

or publish the gem to a gem hosting service, e.g. RubyGems.

Finally add this to the Gemfile:

gem 'get_around_owner', '~> 1.0.8'

Install from Git

If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:

gem 'get_around_owner', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'

Include the Ruby code directly

Include the Ruby code directly using -I as follows:

ruby -Ilib script.rb

Getting Started

Please follow the installation procedure and then run the following code:

# Load the gem
require 'get_around_owner'
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::CarsApi.new
id = GetAroundOwner::null.new #  | ID of car to return


begin
  #Find a car by ID
  result = api_instance.get_car_by_id(id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling CarsApi->get_car_by_id: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::CarsApi.new
opts = {
  page: GetAroundOwner::null.new, #  | Page number
  per_page: GetAroundOwner::null.new #  | Page size
}

begin
  #Find all cars
  result = api_instance.get_cars(opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling CarsApi->get_cars: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::CheckinsApi.new
rental_id = GetAroundOwner::null.new #  | ID of the rental related to the checkin to return


begin
  #Find a checkin by rental ID
  result = api_instance.get_checkin_by_rental_id(rental_id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling CheckinsApi->get_checkin_by_rental_id: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::CheckinsApi.new
start_date = GetAroundOwner::null.new #  | Start date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
end_date = GetAroundOwner::null.new #  | End date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
opts = {
  page: GetAroundOwner::null.new, #  | Page number
  per_page: GetAroundOwner::null.new #  | Page size
}

begin
  #List of checkins that occurred between two dates
  result = api_instance.get_checkins(start_date, end_date, opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling CheckinsApi->get_checkins: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::CheckoutsApi.new
rental_id = GetAroundOwner::null.new #  | ID of the rental related to the checkout to return


begin
  #Find a checkout by rental ID
  result = api_instance.get_checkout_by_rental_id(rental_id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling CheckoutsApi->get_checkout_by_rental_id: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::CheckoutsApi.new
start_date = GetAroundOwner::null.new #  | Start date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
end_date = GetAroundOwner::null.new #  | End date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
opts = {
  page: GetAroundOwner::null.new, #  | Page number
  per_page: GetAroundOwner::null.new #  | Page size
}

begin
  #List of checkouts that occurred between two dates
  result = api_instance.get_checkouts(start_date, end_date, opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling CheckoutsApi->get_checkouts: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::InvoicesApi.new
id = GetAroundOwner::null.new #  | ID of invoice to return


begin
  #Find an invoice by ID
  result = api_instance.get_invoice_by_id(id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling InvoicesApi->get_invoice_by_id: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::InvoicesApi.new
opts = {
  start_date: GetAroundOwner::null.new, #  | Start date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
  end_date: GetAroundOwner::null.new, #  | End date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
  page: GetAroundOwner::null.new, #  | Page number
  per_page: GetAroundOwner::null.new #  | Page size
}

begin
  #Find invoices emitted between dates
  result = api_instance.get_invoices(opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling InvoicesApi->get_invoices: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::InvoicesApi.new
rental_id = GetAroundOwner::null.new #  | ID of rental
opts = {
  page: GetAroundOwner::null.new, #  | Page number
  per_page: GetAroundOwner::null.new #  | Page size
}

begin
  #Find invoices associated to a rental
  result = api_instance.get_invoices_for_rental(rental_id, opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling InvoicesApi->get_invoices_for_rental: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::MessagesApi.new
rental_id = GetAroundOwner::null.new #  | ID of rental
opts = {
  body: GetAroundOwner::RentalIdMessagesJsonBody.new # RentalIdMessagesJsonBody | Message to create
}

begin
  #Create Message associated to a rental
  result = api_instance.create_messages(rental_id, opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling MessagesApi->create_messages: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::MessagesApi.new
rental_id = GetAroundOwner::null.new #  | ID of rental
id = GetAroundOwner::null.new #  | ID of message to return


begin
  #Find a message by ID associated to a rental
  result = api_instance.get_message_by_id(rental_id, id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling MessagesApi->get_message_by_id: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::MessagesApi.new
rental_id = GetAroundOwner::null.new #  | ID of rental


begin
  #Find messages associated to a rental
  result = api_instance.get_messages_for_rental(rental_id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling MessagesApi->get_messages_for_rental: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::PayoutsApi.new
id = GetAroundOwner::null.new #  | ID of payout to return


begin
  #Find a payout by ID
  result = api_instance.get_payout_by_id(id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling PayoutsApi->get_payout_by_id: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::PayoutsApi.new
start_date = GetAroundOwner::null.new #  | Start date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
end_date = GetAroundOwner::null.new #  | End date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
opts = {
  page: GetAroundOwner::null.new, #  | Page number
  per_page: GetAroundOwner::null.new #  | Page size
}

begin
  #Find payouts paid between dates
  result = api_instance.get_payouts(start_date, end_date, opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling PayoutsApi->get_payouts: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::RentalsApi.new
id = GetAroundOwner::null.new #  | ID of rental to return


begin
  #Find a rental by ID
  result = api_instance.get_rental_by_id(id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling RentalsApi->get_rental_by_id: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::RentalsApi.new
start_date = GetAroundOwner::null.new #  | Start date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
end_date = GetAroundOwner::null.new #  | End date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
opts = {
  page: GetAroundOwner::null.new, #  | Page number
  per_page: GetAroundOwner::null.new #  | Page size
}

begin
  #Find rentals booked between dates
  result = api_instance.get_rentals(start_date, end_date, opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling RentalsApi->get_rentals: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::UnavailabilitiesApi.new
car_id = GetAroundOwner::null.new #  | ID of car
opts = {
  body: GetAroundOwner::CarIdUnavailabilitiesJsonBody.new # CarIdUnavailabilitiesJsonBody | Unavailability to create
}

begin
  #Create Unavailability related to a car between dates
  api_instance.create_unavailabilities(car_id, opts)
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling UnavailabilitiesApi->create_unavailabilities: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::UnavailabilitiesApi.new
car_id = GetAroundOwner::null.new #  | ID of car


begin
  #Destroy Unavailability related to a car between dates
  api_instance.destroy_unavailability(car_id)
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling UnavailabilitiesApi->destroy_unavailability: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::UnavailabilitiesApi.new
start_date = GetAroundOwner::null.new #  | Start date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
end_date = GetAroundOwner::null.new #  | End date and time in [ISO8601 format](https://www.iso.org/iso-8601-date-and-time-format.html)
car_id = GetAroundOwner::null.new #  | ID of the car
opts = {
  page: GetAroundOwner::null.new, #  | Page number
  per_page: GetAroundOwner::null.new #  | Page size
}

begin
  #Find Unavailabilities related to a car between dates
  result = api_instance.get_unavailabilities_for_car(start_date, end_date, car_id, opts)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling UnavailabilitiesApi->get_unavailabilities_for_car: #{e}"
end
# Setup authorization
GetAroundOwner.configure do |config|
end

api_instance = GetAroundOwner::UsersApi.new
id = GetAroundOwner::null.new #  | ID of user to return


begin
  #Find a user by ID (Users are customers who rent one of your cars)
  result = api_instance.get_user_by_id(id)
  p result
rescue GetAroundOwner::ApiError => e
  puts "Exception when calling UsersApi->get_user_by_id: #{e}"
end

Documentation for API Endpoints

All URIs are relative to https://api-eu.getaround.com/owner/v1

ClassMethodHTTP requestDescription
GetAroundOwner::CarsApiget_car_by_idGET /cars/{id}.jsonFind a car by ID
GetAroundOwner::CarsApiget_carsGET /cars.jsonFind all cars
GetAroundOwner::CheckinsApiget_checkin_by_rental_idGET /rentals/{rental_id}/checkin.jsonFind a checkin by rental ID
GetAroundOwner::CheckinsApiget_checkinsGET /checkins.jsonList of checkins that occurred between two dates
GetAroundOwner::CheckoutsApiget_checkout_by_rental_idGET /rentals/{rental_id}/checkout.jsonFind a checkout by rental ID
GetAroundOwner::CheckoutsApiget_checkoutsGET /checkouts.jsonList of checkouts that occurred between two dates
GetAroundOwner::InvoicesApiget_invoice_by_idGET /invoices/{id}.jsonFind an invoice by ID
GetAroundOwner::InvoicesApiget_invoicesGET /invoices.jsonFind invoices emitted between dates
GetAroundOwner::InvoicesApiget_invoices_for_rentalGET /rentals/{rental_id}/invoices.jsonFind invoices associated to a rental
GetAroundOwner::MessagesApicreate_messagesPOST /rentals/{rental_id}/messages.jsonCreate Message associated to a rental
GetAroundOwner::MessagesApiget_message_by_idGET /rentals/{rental_id}/messages/{id}.jsonFind a message by ID associated to a rental
GetAroundOwner::MessagesApiget_messages_for_rentalGET /rentals/{rental_id}/messages.jsonFind messages associated to a rental
GetAroundOwner::PayoutsApiget_payout_by_idGET /payouts/{id}.jsonFind a payout by ID
GetAroundOwner::PayoutsApiget_payoutsGET /payouts.jsonFind payouts paid between dates
GetAroundOwner::RentalsApiget_rental_by_idGET /rentals/{id}.jsonFind a rental by ID
GetAroundOwner::RentalsApiget_rentalsGET /rentals.jsonFind rentals booked between dates
GetAroundOwner::UnavailabilitiesApicreate_unavailabilitiesPOST /cars/{car_id}/unavailabilities.jsonCreate Unavailability related to a car between dates
GetAroundOwner::UnavailabilitiesApidestroy_unavailabilityDELETE /cars/{car_id}/unavailabilities.jsonDestroy Unavailability related to a car between dates
GetAroundOwner::UnavailabilitiesApiget_unavailabilities_for_carGET /cars/{car_id}/unavailabilities.jsonFind Unavailabilities related to a car between dates
GetAroundOwner::UsersApiget_user_by_idGET /users/{id}.jsonFind a user by ID (Users are customers who rent one of your cars)

Documentation for Models

Documentation for Authorization

bearerAuth

FAQs

Package last updated on 31 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc