bookingsync-api 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +1 -1
- data/Gemfile +2 -1
- data/Guardfile +3 -6
- data/README.md +11 -3
- data/bookingsync-api.gemspec +2 -2
- data/lib/bookingsync/api.rb +0 -2
- data/lib/bookingsync/api/client.rb +151 -54
- data/lib/bookingsync/api/client/amenities.rb +22 -0
- data/lib/bookingsync/api/client/billing_addresses.rb +22 -0
- data/lib/bookingsync/api/client/bookings.rb +7 -9
- data/lib/bookingsync/api/client/bookings_payments.rb +22 -0
- data/lib/bookingsync/api/client/clients.rb +43 -0
- data/lib/bookingsync/api/client/destinations.rb +22 -0
- data/lib/bookingsync/api/client/inquiries.rb +2 -2
- data/lib/bookingsync/api/client/payments.rb +53 -0
- data/lib/bookingsync/api/client/periods.rb +54 -0
- data/lib/bookingsync/api/client/photos.rb +22 -0
- data/lib/bookingsync/api/client/rates.rb +23 -0
- data/lib/bookingsync/api/client/rates_rules.rb +22 -0
- data/lib/bookingsync/api/client/rates_tables.rb +53 -0
- data/lib/bookingsync/api/client/rental_agreements.rb +50 -0
- data/lib/bookingsync/api/client/rentals.rb +39 -1
- data/lib/bookingsync/api/client/reviews.rb +31 -0
- data/lib/bookingsync/api/client/seasons.rb +53 -0
- data/lib/bookingsync/api/client/special_offers.rb +54 -0
- data/lib/bookingsync/api/relation.rb +87 -0
- data/lib/bookingsync/api/resource.rb +58 -0
- data/lib/bookingsync/api/response.rb +79 -0
- data/lib/bookingsync/api/serializer.rb +100 -0
- data/lib/bookingsync/api/version.rb +1 -1
- data/spec/bookingsync/api/client/amenities_spec.rb +12 -0
- data/spec/bookingsync/api/client/billing_addresses_spec.rb +12 -0
- data/spec/bookingsync/api/client/billings_payments_spec.rb +12 -0
- data/spec/bookingsync/api/client/bookings_spec.rb +10 -8
- data/spec/bookingsync/api/client/clients_spec.rb +55 -0
- data/spec/bookingsync/api/client/destinations_spec.rb +12 -0
- data/spec/bookingsync/api/client/inquiries_spec.rb +1 -1
- data/spec/bookingsync/api/client/payments_spec.rb +56 -0
- data/spec/bookingsync/api/client/periods_spec.rb +61 -0
- data/spec/bookingsync/api/client/photos_spec.rb +12 -0
- data/spec/bookingsync/api/client/rates_rules_spec.rb +13 -0
- data/spec/bookingsync/api/client/rates_spec.rb +12 -0
- data/spec/bookingsync/api/client/rates_tables_spec.rb +59 -0
- data/spec/bookingsync/api/client/rental_agreements_spec.rb +64 -0
- data/spec/bookingsync/api/client/rentals_spec.rb +56 -6
- data/spec/bookingsync/api/client/reviews_spec.rb +33 -0
- data/spec/bookingsync/api/client/seasons_spec.rb +61 -0
- data/spec/bookingsync/api/client/special_offers_spec.rb +63 -0
- data/spec/bookingsync/api/client_spec.rb +31 -10
- data/spec/bookingsync/api/relation_spec.rb +72 -0
- data/spec/bookingsync/api/resource_spec.rb +79 -0
- data/spec/bookingsync/api/response_spec.rb +66 -0
- data/spec/cassettes/BookingSync_API_Client_Amenities/_amenities/returns_amenities.yml +72 -0
- data/spec/cassettes/BookingSync_API_Client_BillingAddresses/_billing_addresses/returns_billing_addresses.yml +65 -0
- data/spec/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_a_block/yields_block_with_batch_of_bookings.yml +12 -12
- data/spec/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_auto_paginate_true/returns_all_bookings_joined_from_many_requests.yml +12 -12
- data/spec/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_per_page_setting/returns_limited_number_of_bookings.yml +3 -3
- data/spec/cassettes/BookingSync_API_Client_Bookings/_clients/returns_clients.yml +66 -0
- data/spec/cassettes/BookingSync_API_Client_Bookings/_create_booking/creates_a_booking.yml +1 -1
- data/spec/cassettes/BookingSync_API_Client_Bookings/_create_client/creates_a_new_client.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Bookings/_edit_booking/updates_given_booking_by_ID.yml +18 -14
- data/spec/cassettes/BookingSync_API_Client_Bookings/_edit_client/updates_given_client_by_ID.yml +62 -0
- data/spec/cassettes/BookingSync_API_Client_BookingsPayments/_bookings_payments/returns_bookings_payments.yml +65 -0
- data/spec/cassettes/BookingSync_API_Client_Destinations/_destinations/returns_destinations.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Inquiries/_create_inquiry/creates_a_new_inquiry.yml +1 -1
- data/spec/cassettes/BookingSync_API_Client_Inquiries/_inquiries/returns_inquiries.yml +1 -1
- data/spec/cassettes/BookingSync_API_Client_Payments/_cancel_payment/cancels_given_payment.yml +57 -0
- data/spec/cassettes/BookingSync_API_Client_Payments/_create_payment/creates_a_new_payment.yml +63 -0
- data/spec/cassettes/BookingSync_API_Client_Payments/_edit_payment/updates_given_payment_by_ID.yml +61 -0
- data/spec/cassettes/BookingSync_API_Client_Payments/_payments/returns_payments.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Periods/_create_period/creates_a_new_period.yml +63 -0
- data/spec/cassettes/BookingSync_API_Client_Periods/_delete_period/deletes_given_period.yml +70 -0
- data/spec/cassettes/BookingSync_API_Client_Periods/_edit_period/updates_given_period_by_ID.yml +61 -0
- data/spec/cassettes/BookingSync_API_Client_Periods/_periods/returns_periods.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Photos/_photos/returns_photos.yml +72 -0
- data/spec/cassettes/BookingSync_API_Client_Rates/_rates/returns_rates.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_RatesRules/_rates_rules/returns_rates_rules.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_RatesTables/_create_rates_table/creates_a_new_rates_table.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_RatesTables/_delete_rates_table/deletes_given_rates_table.yml +57 -0
- data/spec/cassettes/BookingSync_API_Client_RatesTables/_edit_rates_table/updates_given_rates_table_by_ID.yml +62 -0
- data/spec/cassettes/BookingSync_API_Client_RatesTables/_rates_tables/returns_rates_tables.yml +74 -0
- data/spec/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement/creates_a_new_rental_agreement.yml +63 -0
- data/spec/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement_for_booking/creates_a_new_rental_agreement.yml +63 -0
- data/spec/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement_for_rental/creates_a_new_rental_agreement.yml +63 -0
- data/spec/cassettes/BookingSync_API_Client_RentalAgreements/_rental_agreements/returns_rental_agreements.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Rentals/_cancel_rental/cancels_given_rental.yml +57 -0
- data/spec/cassettes/BookingSync_API_Client_Rentals/_create_rental/creates_a_new_rental.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Rentals/_edit_rental/updates_given_rental_by_ID.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Rentals/_rental/returns_a_single_rental.yml +67 -0
- data/spec/cassettes/BookingSync_API_Client_Rentals/_rentals/links/returns_associated_photos.yml +152 -0
- data/spec/cassettes/BookingSync_API_Client_Rentals/_rentals/links/returns_links_to_associated_resources.yml +91 -0
- data/spec/cassettes/BookingSync_API_Client_Rentals/_rentals/returns_rentals.yml +45 -20
- data/spec/cassettes/BookingSync_API_Client_Reviews/_create_review/creates_a_new_review.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Reviews/_reviews/returns_reviews.yml +83 -0
- data/spec/cassettes/BookingSync_API_Client_Seasons/_create_season/creates_a_new_season.yml +64 -0
- data/spec/cassettes/BookingSync_API_Client_Seasons/_delete_season/deletes_given_season.yml +57 -0
- data/spec/cassettes/BookingSync_API_Client_Seasons/_edit_season/updates_given_season_by_ID.yml +62 -0
- data/spec/cassettes/BookingSync_API_Client_Seasons/_seasons/returns_seasons.yml +74 -0
- data/spec/cassettes/BookingSync_API_Client_SpecialOffers/_create_special_offer/creates_a_new_special_offer.yml +63 -0
- data/spec/cassettes/BookingSync_API_Client_SpecialOffers/_delete_special_offer/deletes_given_special_offer.yml +57 -0
- data/spec/cassettes/BookingSync_API_Client_SpecialOffers/_edit_special_offer/updates_given_special_offer_by_ID.yml +61 -0
- data/spec/cassettes/{BookingSync_API_Client_Rentals/_rentals/with_specified_fields_in_options/returns_rentals_with_filtered_fields.yml → BookingSync_API_Client_SpecialOffers/_special_offers/returns_special_offers.yml} +17 -10
- data/spec/spec_helper.rb +1 -0
- metadata +143 -7
- data/lib/bookingsync/ext/resource.rb +0 -9
| @@ -0,0 +1,91 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: get
         | 
| 5 | 
            +
                uri: https://www.bookingsync.com/api/v3/rentals
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: US-ASCII
         | 
| 8 | 
            +
                  string: ''
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v0.9.0
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - application/vnd.api+json
         | 
| 14 | 
            +
                  Content-Type:
         | 
| 15 | 
            +
                  - application/vnd.api+json
         | 
| 16 | 
            +
                  Authorization:
         | 
| 17 | 
            +
                  - Bearer <<ACCESS_TOKEN>>
         | 
| 18 | 
            +
                  Accept-Encoding:
         | 
| 19 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 20 | 
            +
              response:
         | 
| 21 | 
            +
                status:
         | 
| 22 | 
            +
                  code: 200
         | 
| 23 | 
            +
                  message: OK
         | 
| 24 | 
            +
                headers:
         | 
| 25 | 
            +
                  X-Ratelimit-Limit:
         | 
| 26 | 
            +
                  - '1000'
         | 
| 27 | 
            +
                  X-Ratelimit-Reset:
         | 
| 28 | 
            +
                  - '1396360800'
         | 
| 29 | 
            +
                  X-Ratelimit-Remaining:
         | 
| 30 | 
            +
                  - '990'
         | 
| 31 | 
            +
                  Link:
         | 
| 32 | 
            +
                  - "<https://www.bookingsync.com/api/v3/rentals?page=1>; rel=\"first\", <https://www.bookingsync.com/api/v3/rentals?page=1>;
         | 
| 33 | 
            +
                    rel=\"last\""
         | 
| 34 | 
            +
                  X-Total-Pages:
         | 
| 35 | 
            +
                  - '1'
         | 
| 36 | 
            +
                  Access-Control-Allow-Origin:
         | 
| 37 | 
            +
                  - "*"
         | 
| 38 | 
            +
                  Access-Control-Request-Method:
         | 
| 39 | 
            +
                  - "*"
         | 
| 40 | 
            +
                  Content-Type:
         | 
| 41 | 
            +
                  - application/vnd.api+json; charset=utf-8
         | 
| 42 | 
            +
                  X-Ua-Compatible:
         | 
| 43 | 
            +
                  - IE=Edge
         | 
| 44 | 
            +
                  Etag:
         | 
| 45 | 
            +
                  - "\"7f1e07a2278f1a24b058059d96ef7da2\""
         | 
| 46 | 
            +
                  Cache-Control:
         | 
| 47 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 48 | 
            +
                  P3p:
         | 
| 49 | 
            +
                  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
         | 
| 50 | 
            +
                    OUR SAMi OTRo UNRo PUBi IND UNI STA"
         | 
| 51 | 
            +
                  X-Request-Id:
         | 
| 52 | 
            +
                  - c598952df34dfd2090b9d7540c71efd7
         | 
| 53 | 
            +
                  X-Runtime:
         | 
| 54 | 
            +
                  - '0.183666'
         | 
| 55 | 
            +
                  Date:
         | 
| 56 | 
            +
                  - Tue, 01 Apr 2014 13:42:40 GMT
         | 
| 57 | 
            +
                  Connection:
         | 
| 58 | 
            +
                  - close
         | 
| 59 | 
            +
                body:
         | 
| 60 | 
            +
                  encoding: UTF-8
         | 
| 61 | 
            +
                  string: "{\"links\":{\"rentals.photos\":\"https://www.bookingsync.com/en/api/v3/photos/{rentals.photos}\"},\"rentals\":[{\"links\":{\"photos\":[20]},\"account_id\":1,\"id\":2,\"name\":\"0
         | 
| 62 | 
            +
                    est\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 63 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 64 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-03-26T14:14:18Z\"},{\"links\":{\"photos\":[2]},\"account_id\":1,\"id\":4,\"name\":\"1
         | 
| 65 | 
            +
                    et\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 66 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 67 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-03-21T13:42:58Z\"},{\"links\":{\"photos\":[]},\"account_id\":1,\"id\":6,\"name\":\"ha
         | 
| 68 | 
            +
                    ha\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 69 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 70 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-03-26T13:06:42Z\"},{\"links\":{\"photos\":[]},\"account_id\":1,\"id\":8,\"name\":\"bla
         | 
| 71 | 
            +
                    bla\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 72 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 73 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-03-26T13:05:05Z\"},{\"links\":{\"photos\":[]},\"account_id\":1,\"id\":10,\"name\":\"4
         | 
| 74 | 
            +
                    sunt\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 75 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 76 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-03-21T13:41:55Z\"},{\"links\":{\"photos\":[7]},\"account_id\":1,\"id\":14,\"name\":\"6
         | 
| 77 | 
            +
                    aut sed\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 78 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 79 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-02-28T10:57:26Z\"},{\"links\":{\"photos\":[8]},\"account_id\":1,\"id\":16,\"name\":\"7
         | 
| 80 | 
            +
                    exercitationem ea soluta\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 81 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 82 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-02-28T10:57:26Z\"},{\"links\":{\"photos\":[9]},\"account_id\":1,\"id\":18,\"name\":\"8
         | 
| 83 | 
            +
                    dolores\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 84 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 85 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-02-28T10:58:36Z\"},{\"links\":{\"photos\":[10]},\"account_id\":1,\"id\":20,\"name\":\"9
         | 
| 86 | 
            +
                    doloremque sint\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 87 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 88 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-03-21T13:41:56Z\"}]}"
         | 
| 89 | 
            +
                http_version:
         | 
| 90 | 
            +
              recorded_at: Tue, 01 Apr 2014 13:42:40 GMT
         | 
| 91 | 
            +
            recorded_with: VCR 2.8.0
         | 
| @@ -8,9 +8,11 @@ http_interactions: | |
| 8 8 | 
             
                  string: ''
         | 
| 9 9 | 
             
                headers:
         | 
| 10 10 | 
             
                  User-Agent:
         | 
| 11 | 
            -
                  - Faraday v0. | 
| 11 | 
            +
                  - Faraday v0.9.0
         | 
| 12 12 | 
             
                  Accept:
         | 
| 13 13 | 
             
                  - application/vnd.api+json
         | 
| 14 | 
            +
                  Content-Type:
         | 
| 15 | 
            +
                  - application/vnd.api+json
         | 
| 14 16 | 
             
                  Authorization:
         | 
| 15 17 | 
             
                  - Bearer <<ACCESS_TOKEN>>
         | 
| 16 18 | 
             
                  Accept-Encoding:
         | 
| @@ -23,9 +25,14 @@ http_interactions: | |
| 23 25 | 
             
                  X-Ratelimit-Limit:
         | 
| 24 26 | 
             
                  - '1000'
         | 
| 25 27 | 
             
                  X-Ratelimit-Reset:
         | 
| 26 | 
            -
                  - ' | 
| 28 | 
            +
                  - '1398265200'
         | 
| 27 29 | 
             
                  X-Ratelimit-Remaining:
         | 
| 28 | 
            -
                  - ' | 
| 30 | 
            +
                  - '987'
         | 
| 31 | 
            +
                  Link:
         | 
| 32 | 
            +
                  - "<https://www.bookingsync.com/api/v3/rentals?page=1>; rel=\"first\", <https://www.bookingsync.com/api/v3/rentals?page=1>;
         | 
| 33 | 
            +
                    rel=\"last\""
         | 
| 34 | 
            +
                  X-Total-Pages:
         | 
| 35 | 
            +
                  - '1'
         | 
| 29 36 | 
             
                  Access-Control-Allow-Origin:
         | 
| 30 37 | 
             
                  - "*"
         | 
| 31 38 | 
             
                  Access-Control-Request-Method:
         | 
| @@ -35,32 +42,50 @@ http_interactions: | |
| 35 42 | 
             
                  X-Ua-Compatible:
         | 
| 36 43 | 
             
                  - IE=Edge
         | 
| 37 44 | 
             
                  Etag:
         | 
| 38 | 
            -
                  - "\" | 
| 45 | 
            +
                  - "\"81e8b74e85a356a4b40eb328206bde99\""
         | 
| 39 46 | 
             
                  Cache-Control:
         | 
| 40 47 | 
             
                  - max-age=0, private, must-revalidate
         | 
| 41 48 | 
             
                  P3p:
         | 
| 42 49 | 
             
                  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
         | 
| 43 50 | 
             
                    OUR SAMi OTRo UNRo PUBi IND UNI STA"
         | 
| 44 51 | 
             
                  X-Request-Id:
         | 
| 45 | 
            -
                  -  | 
| 52 | 
            +
                  - bfae5f384fd0ded30ce5159435d15cc8
         | 
| 46 53 | 
             
                  X-Runtime:
         | 
| 47 | 
            -
                  - '0. | 
| 54 | 
            +
                  - '0.216152'
         | 
| 48 55 | 
             
                  Date:
         | 
| 49 | 
            -
                  -  | 
| 56 | 
            +
                  - Wed, 23 Apr 2014 14:06:44 GMT
         | 
| 50 57 | 
             
                  Connection:
         | 
| 51 58 | 
             
                  - close
         | 
| 52 59 | 
             
                body:
         | 
| 53 60 | 
             
                  encoding: UTF-8
         | 
| 54 | 
            -
                  string: "{\"rentals\":[{\"links\":{\"photos\":[]},\"account_id\":1,\"id\":2,\"name\":\" | 
| 55 | 
            -
                     | 
| 56 | 
            -
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\" | 
| 57 | 
            -
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014- | 
| 58 | 
            -
                     | 
| 59 | 
            -
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\" | 
| 60 | 
            -
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014- | 
| 61 | 
            -
                     | 
| 62 | 
            -
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\" | 
| 63 | 
            -
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014- | 
| 64 | 
            -
             | 
| 65 | 
            -
             | 
| 66 | 
            -
             | 
| 61 | 
            +
                  string: "{\"links\":{\"rentals.destination\":\"https://www.bookingsync.com/api/v3/destinations/{rentals.destination}\",\"rentals.photos\":\"https://www.bookingsync.com/api/v3/photos/{rentals.photos}\"},\"rentals\":[{\"links\":{\"destination\":1,\"photos\":[1]},\"account_id\":1,\"id\":2,\"name\":\"Updated
         | 
| 62 | 
            +
                    Rental name\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 63 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 64 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-23T14:05:55Z\",\"checkin_time\":16,\"checkout_time\":10},{\"links\":{\"destination\":2,\"photos\":[2]},\"account_id\":1,\"id\":4,\"name\":\"1
         | 
| 65 | 
            +
                    dignissimos\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 66 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 67 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-23T08:05:04Z\",\"checkin_time\":16,\"checkout_time\":10},{\"links\":{\"destination\":3,\"photos\":[3]},\"account_id\":1,\"id\":6,\"name\":\"2
         | 
| 68 | 
            +
                    ratione\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 69 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 70 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-23T08:05:04Z\",\"checkin_time\":16,\"checkout_time\":10},{\"links\":{\"destination\":4,\"photos\":[4]},\"account_id\":1,\"id\":8,\"name\":\"3
         | 
| 71 | 
            +
                    magni\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 72 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 73 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-23T08:05:04Z\",\"checkin_time\":16,\"checkout_time\":10},{\"links\":{\"destination\":6,\"photos\":[6]},\"account_id\":1,\"id\":12,\"name\":\"5
         | 
| 74 | 
            +
                    aut ullam placeat\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 75 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 76 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-23T08:05:04Z\",\"checkin_time\":16,\"checkout_time\":10},{\"links\":{\"destination\":7,\"photos\":[7]},\"account_id\":1,\"id\":14,\"name\":\"6
         | 
| 77 | 
            +
                    numquam\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 78 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 79 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-23T08:05:04Z\",\"checkin_time\":16,\"checkout_time\":10},{\"links\":{\"destination\":8,\"photos\":[8]},\"account_id\":1,\"id\":16,\"name\":\"7
         | 
| 80 | 
            +
                    minima\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 81 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 82 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-23T08:05:04Z\",\"checkin_time\":16,\"checkout_time\":10},{\"links\":{\"destination\":9,\"photos\":[9]},\"account_id\":1,\"id\":18,\"name\":\"8
         | 
| 83 | 
            +
                    impedit tempore enim\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 84 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 85 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-14T13:19:24Z\",\"checkin_time\":16,\"checkout_time\":10},{\"links\":{\"destination\":10,\"photos\":[10]},\"account_id\":1,\"id\":20,\"name\":\"9
         | 
| 86 | 
            +
                    deleniti\",\"headline\":{\"en\":\"Super Headline\"},\"summary\":{\"en\":\"Super
         | 
| 87 | 
            +
                    summary\"},\"description\":{\"en\":\"Complete description\"},\"rental_type\":\"villa\",\"units\":1,\"bedrooms_count\":null,\"sleeps\":7,\"sleeps_max\":null,\"bathrooms_count\":3,\"surface\":120,\"bookable_online\":false,\"min_price\":700,\"max_price\":700,\"price_kind\":\"weekly\",\"currency\":\"EUR\",\"rates_public_notes\":{\"en\":null},\"lat\":45.02,\"lng\":6.6,\"city\":\"Nevache\",\"state\":null,\"country\":\"France\",\"contact_name\":\"Contact
         | 
| 88 | 
            +
                    Fullname\",\"amenities\":[],\"reviews_count\":0,\"reviews_average_rating\":null,\"updated_at\":\"2014-04-23T08:30:35Z\",\"checkin_time\":16,\"checkout_time\":10}]}"
         | 
| 89 | 
            +
                http_version: 
         | 
| 90 | 
            +
              recorded_at: Wed, 23 Apr 2014 14:06:44 GMT
         | 
| 91 | 
            +
            recorded_with: VCR 2.9.0
         | 
| @@ -0,0 +1,64 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://www.bookingsync.com/api/v3/reviews
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: '{"booking_id":1,"reviews":[{"comment":"Awesome place","rating":5}]}'
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v0.9.0
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - application/vnd.api+json
         | 
| 14 | 
            +
                  Content-Type:
         | 
| 15 | 
            +
                  - application/vnd.api+json
         | 
| 16 | 
            +
                  Authorization:
         | 
| 17 | 
            +
                  - Bearer <<ACCESS_TOKEN>>
         | 
| 18 | 
            +
                  Accept-Encoding:
         | 
| 19 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 20 | 
            +
              response:
         | 
| 21 | 
            +
                status:
         | 
| 22 | 
            +
                  code: 201
         | 
| 23 | 
            +
                  message: Created
         | 
| 24 | 
            +
                headers:
         | 
| 25 | 
            +
                  X-Ratelimit-Limit:
         | 
| 26 | 
            +
                  - '1000'
         | 
| 27 | 
            +
                  X-Ratelimit-Reset:
         | 
| 28 | 
            +
                  - '1398423600'
         | 
| 29 | 
            +
                  X-Ratelimit-Remaining:
         | 
| 30 | 
            +
                  - '997'
         | 
| 31 | 
            +
                  Location:
         | 
| 32 | 
            +
                  - https://www.bookingsync.com/api/v3/reviews/3
         | 
| 33 | 
            +
                  Access-Control-Allow-Origin:
         | 
| 34 | 
            +
                  - "*"
         | 
| 35 | 
            +
                  Access-Control-Request-Method:
         | 
| 36 | 
            +
                  - "*"
         | 
| 37 | 
            +
                  Content-Type:
         | 
| 38 | 
            +
                  - application/vnd.api+json; charset=utf-8
         | 
| 39 | 
            +
                  X-Ua-Compatible:
         | 
| 40 | 
            +
                  - IE=Edge
         | 
| 41 | 
            +
                  Etag:
         | 
| 42 | 
            +
                  - '"c9c6c54ccda7eb504ef18ad27dafa70d"'
         | 
| 43 | 
            +
                  Cache-Control:
         | 
| 44 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 45 | 
            +
                  P3p:
         | 
| 46 | 
            +
                  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
         | 
| 47 | 
            +
                    OUR SAMi OTRo UNRo PUBi IND UNI STA"
         | 
| 48 | 
            +
                  Set-Cookie:
         | 
| 49 | 
            +
                  - _BookingSync_session=b707ff2476a456565876ff5330743855; path=/; secure; HttpOnly
         | 
| 50 | 
            +
                  X-Request-Id:
         | 
| 51 | 
            +
                  - 04bc26104feb03575c89da6af3bae440
         | 
| 52 | 
            +
                  X-Runtime:
         | 
| 53 | 
            +
                  - '0.047378'
         | 
| 54 | 
            +
                  Date:
         | 
| 55 | 
            +
                  - Fri, 25 Apr 2014 10:25:34 GMT
         | 
| 56 | 
            +
                  Connection:
         | 
| 57 | 
            +
                  - close
         | 
| 58 | 
            +
                body:
         | 
| 59 | 
            +
                  encoding: UTF-8
         | 
| 60 | 
            +
                  string: '{"reviews":[{"id":3,"rating":5,"comment":"Awesome place","name":"Palma
         | 
| 61 | 
            +
                    S.","updated_at":"2014-04-25T10:25:34Z"}]}'
         | 
| 62 | 
            +
                http_version: 
         | 
| 63 | 
            +
              recorded_at: Fri, 25 Apr 2014 10:25:34 GMT
         | 
| 64 | 
            +
            recorded_with: VCR 2.9.0
         | 
| @@ -0,0 +1,83 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: get
         | 
| 5 | 
            +
                uri: https://www.bookingsync.com/api/v3/reviews
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: US-ASCII
         | 
| 8 | 
            +
                  string: ''
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v0.9.0
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - application/vnd.api+json
         | 
| 14 | 
            +
                  Content-Type:
         | 
| 15 | 
            +
                  - application/vnd.api+json
         | 
| 16 | 
            +
                  Authorization:
         | 
| 17 | 
            +
                  - Bearer <<ACCESS_TOKEN>>
         | 
| 18 | 
            +
                  Accept-Encoding:
         | 
| 19 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 20 | 
            +
              response:
         | 
| 21 | 
            +
                status:
         | 
| 22 | 
            +
                  code: 200
         | 
| 23 | 
            +
                  message: OK
         | 
| 24 | 
            +
                headers:
         | 
| 25 | 
            +
                  Server:
         | 
| 26 | 
            +
                  - nginx
         | 
| 27 | 
            +
                  Date:
         | 
| 28 | 
            +
                  - Tue, 08 Apr 2014 13:34:55 GMT
         | 
| 29 | 
            +
                  Content-Type:
         | 
| 30 | 
            +
                  - application/vnd.api+json; charset=utf-8
         | 
| 31 | 
            +
                  Transfer-Encoding:
         | 
| 32 | 
            +
                  - chunked
         | 
| 33 | 
            +
                  Connection:
         | 
| 34 | 
            +
                  - keep-alive
         | 
| 35 | 
            +
                  Status:
         | 
| 36 | 
            +
                  - 200 OK
         | 
| 37 | 
            +
                  X-Ratelimit-Limit:
         | 
| 38 | 
            +
                  - '1000'
         | 
| 39 | 
            +
                  X-Ratelimit-Reset:
         | 
| 40 | 
            +
                  - '1396965600.0'
         | 
| 41 | 
            +
                  X-Ratelimit-Remaining:
         | 
| 42 | 
            +
                  - '999'
         | 
| 43 | 
            +
                  Link:
         | 
| 44 | 
            +
                  - <https://www.bookingsync.com/api/v3/reviews?page=1>; rel="first", <https://www.bookingsync.com/api/v3/reviews?page=1>;
         | 
| 45 | 
            +
                    rel="last"
         | 
| 46 | 
            +
                  X-Total-Pages:
         | 
| 47 | 
            +
                  - '1'
         | 
| 48 | 
            +
                  Access-Control-Allow-Origin:
         | 
| 49 | 
            +
                  - '*'
         | 
| 50 | 
            +
                  Access-Control-Request-Method:
         | 
| 51 | 
            +
                  - '*'
         | 
| 52 | 
            +
                  X-Ua-Compatible:
         | 
| 53 | 
            +
                  - IE=Edge,chrome=1
         | 
| 54 | 
            +
                  Etag:
         | 
| 55 | 
            +
                  - '"dc276df48dc3d29bff0e2e3d6111d921"'
         | 
| 56 | 
            +
                  Cache-Control:
         | 
| 57 | 
            +
                  - must-revalidate, private, max-age=0
         | 
| 58 | 
            +
                  P3p:
         | 
| 59 | 
            +
                  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
         | 
| 60 | 
            +
                    OUR SAMi OTRo UNRo PUBi IND UNI STA"
         | 
| 61 | 
            +
                  X-Request-Id:
         | 
| 62 | 
            +
                  - be3e29c08176130cb1195c972359eccf
         | 
| 63 | 
            +
                  X-Runtime:
         | 
| 64 | 
            +
                  - '0.237951'
         | 
| 65 | 
            +
                  X-Rack-Cache:
         | 
| 66 | 
            +
                  - miss
         | 
| 67 | 
            +
                body:
         | 
| 68 | 
            +
                  encoding: UTF-8
         | 
| 69 | 
            +
                  string: '{"reviews":[{"id":2,"rating":5,"comment":null,"name":"seb","updated_at":"2013-06-27T19:30:29Z"},{"id":3,"rating":4,"comment":null,"name":"seb","updated_at":"2013-06-27T19:30:37Z"},{"id":4,"rating":4,"comment":null,"name":"seb","updated_at":"2013-06-27T19:53:20Z"},{"id":5,"rating":5,"comment":null,"name":"seb","updated_at":"2013-06-27T20:04:01Z"},{"id":6,"rating":5,"comment":null,"name":"seb","updated_at":"2013-06-27T20:24:08Z"},{"id":7,"rating":5,"comment":"","name":"asdf","updated_at":"2013-08-03T09:34:06Z"},{"id":8,"rating":5,"comment":"juste
         | 
| 70 | 
            +
                    parfait\r\n","name":"Philippe G.","updated_at":"2013-08-03T10:57:23Z"},{"id":9,"rating":5,"comment":null,"name":"Philippe
         | 
| 71 | 
            +
                    G.","updated_at":"2013-08-03T11:01:49Z"},{"id":20,"rating":5,"comment":null,"name":"asdf","updated_at":"2013-08-05T19:54:49Z"},{"id":23,"rating":5,"comment":null,"name":"asdf","updated_at":"2013-08-06T09:08:31Z"},{"id":24,"rating":3,"comment":null,"name":"Toni
         | 
| 72 | 
            +
                    H.","updated_at":"2013-08-06T09:08:41Z"},{"id":25,"rating":4,"comment":null,"name":"Toni
         | 
| 73 | 
            +
                    H.","updated_at":"2013-08-06T09:09:02Z"},{"id":26,"rating":3,"comment":null,"name":"Toni
         | 
| 74 | 
            +
                    H.","updated_at":"2013-08-06T10:35:14Z"},{"id":27,"rating":4,"comment":null,"name":"Toni
         | 
| 75 | 
            +
                    H.","updated_at":"2013-08-06T10:35:14Z"},{"id":51,"rating":4,"comment":"only
         | 
| 76 | 
            +
                    the best","name":"Travis W.","updated_at":"2013-08-10T14:34:27Z"},{"id":52,"rating":4,"comment":"","name":"Travis
         | 
| 77 | 
            +
                    W.","updated_at":"2013-08-10T14:35:50Z"},{"id":68,"rating":5,"comment":"Angelo
         | 
| 78 | 
            +
                    was happy to stay here!","name":"Angelo","updated_at":"2013-08-20T12:54:45Z"},{"id":69,"rating":5,"comment":null,"name":"Angelo","updated_at":"2013-08-20T12:55:32Z"},{"id":175,"rating":5,"comment":null,"name":"Thomas
         | 
| 79 | 
            +
                    L.","updated_at":"2014-04-01T07:32:12Z"},{"id":176,"rating":5,"comment":null,"name":"Thomas
         | 
| 80 | 
            +
                    L.","updated_at":"2014-04-01T09:39:30Z"}]}'
         | 
| 81 | 
            +
                http_version: 
         | 
| 82 | 
            +
              recorded_at: Tue, 08 Apr 2014 13:34:55 GMT
         | 
| 83 | 
            +
            recorded_with: VCR 2.9.0
         | 
| @@ -0,0 +1,64 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: post
         | 
| 5 | 
            +
                uri: https://www.bookingsync.com/api/v3/seasons
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: '{"rates_table_id":13,"seasons":[{"name":"New season","ratio":0.2,"minimum_stay":4}]}'
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v0.9.0
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - application/vnd.api+json
         | 
| 14 | 
            +
                  Content-Type:
         | 
| 15 | 
            +
                  - application/vnd.api+json
         | 
| 16 | 
            +
                  Authorization:
         | 
| 17 | 
            +
                  - Bearer <<ACCESS_TOKEN>>
         | 
| 18 | 
            +
                  Accept-Encoding:
         | 
| 19 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 20 | 
            +
              response:
         | 
| 21 | 
            +
                status:
         | 
| 22 | 
            +
                  code: 201
         | 
| 23 | 
            +
                  message: Created
         | 
| 24 | 
            +
                headers:
         | 
| 25 | 
            +
                  X-Ratelimit-Limit:
         | 
| 26 | 
            +
                  - '1000'
         | 
| 27 | 
            +
                  X-Ratelimit-Reset:
         | 
| 28 | 
            +
                  - '1398427200'
         | 
| 29 | 
            +
                  X-Ratelimit-Remaining:
         | 
| 30 | 
            +
                  - '975'
         | 
| 31 | 
            +
                  Location:
         | 
| 32 | 
            +
                  - https://www.bookingsync.com/api/v3/seasons/24
         | 
| 33 | 
            +
                  Access-Control-Allow-Origin:
         | 
| 34 | 
            +
                  - "*"
         | 
| 35 | 
            +
                  Access-Control-Request-Method:
         | 
| 36 | 
            +
                  - "*"
         | 
| 37 | 
            +
                  Content-Type:
         | 
| 38 | 
            +
                  - application/vnd.api+json; charset=utf-8
         | 
| 39 | 
            +
                  X-Ua-Compatible:
         | 
| 40 | 
            +
                  - IE=Edge
         | 
| 41 | 
            +
                  Etag:
         | 
| 42 | 
            +
                  - '"e97fe3f72b721316ab186a11b341b2bf"'
         | 
| 43 | 
            +
                  Cache-Control:
         | 
| 44 | 
            +
                  - max-age=0, private, must-revalidate
         | 
| 45 | 
            +
                  P3p:
         | 
| 46 | 
            +
                  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
         | 
| 47 | 
            +
                    OUR SAMi OTRo UNRo PUBi IND UNI STA"
         | 
| 48 | 
            +
                  Set-Cookie:
         | 
| 49 | 
            +
                  - _BookingSync_session=30931a50bd898ff1c716a481805b93c9; path=/; secure; HttpOnly
         | 
| 50 | 
            +
                  X-Request-Id:
         | 
| 51 | 
            +
                  - 9ab3fb4d8525b8bcd7a09b79322235c3
         | 
| 52 | 
            +
                  X-Runtime:
         | 
| 53 | 
            +
                  - '1.616383'
         | 
| 54 | 
            +
                  Date:
         | 
| 55 | 
            +
                  - Fri, 25 Apr 2014 11:41:19 GMT
         | 
| 56 | 
            +
                  Connection:
         | 
| 57 | 
            +
                  - close
         | 
| 58 | 
            +
                body:
         | 
| 59 | 
            +
                  encoding: UTF-8
         | 
| 60 | 
            +
                  string: '{"links":{"seasons.rates_rules":"https://www.bookingsync.com/api/v3/rates_rules/{seasons.rates_rules}","seasons.periods":"https://www.bookingsync.com/api/v3/periods/{seasons.periods}"},"seasons":[{"links":{"rates_rules":[],"periods":[]},"id":24,"rates_table_id":13,"name":"New
         | 
| 61 | 
            +
                    season","ratio":"0.2","minimum_stay":4,"color_ratio":"1.0","created_at":"2014-04-25T11:41:19Z","updated_at":"2014-04-25T11:41:19Z"}]}'
         | 
| 62 | 
            +
                http_version: 
         | 
| 63 | 
            +
              recorded_at: Fri, 25 Apr 2014 11:41:19 GMT
         | 
| 64 | 
            +
            recorded_with: VCR 2.9.0
         | 
| @@ -0,0 +1,57 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: delete
         | 
| 5 | 
            +
                uri: https://www.bookingsync.com/api/v3/seasons/10
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: UTF-8
         | 
| 8 | 
            +
                  string: "{}"
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  User-Agent:
         | 
| 11 | 
            +
                  - Faraday v0.9.0
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - application/vnd.api+json
         | 
| 14 | 
            +
                  Content-Type:
         | 
| 15 | 
            +
                  - application/vnd.api+json
         | 
| 16 | 
            +
                  Authorization:
         | 
| 17 | 
            +
                  - Bearer <<ACCESS_TOKEN>>
         | 
| 18 | 
            +
                  Accept-Encoding:
         | 
| 19 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 20 | 
            +
              response:
         | 
| 21 | 
            +
                status:
         | 
| 22 | 
            +
                  code: 204
         | 
| 23 | 
            +
                  message: No Content
         | 
| 24 | 
            +
                headers:
         | 
| 25 | 
            +
                  X-Ratelimit-Limit:
         | 
| 26 | 
            +
                  - '1000'
         | 
| 27 | 
            +
                  X-Ratelimit-Reset:
         | 
| 28 | 
            +
                  - '1398427200'
         | 
| 29 | 
            +
                  X-Ratelimit-Remaining:
         | 
| 30 | 
            +
                  - '994'
         | 
| 31 | 
            +
                  Access-Control-Allow-Origin:
         | 
| 32 | 
            +
                  - "*"
         | 
| 33 | 
            +
                  Access-Control-Request-Method:
         | 
| 34 | 
            +
                  - "*"
         | 
| 35 | 
            +
                  X-Ua-Compatible:
         | 
| 36 | 
            +
                  - IE=Edge
         | 
| 37 | 
            +
                  Cache-Control:
         | 
| 38 | 
            +
                  - no-cache
         | 
| 39 | 
            +
                  P3p:
         | 
| 40 | 
            +
                  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
         | 
| 41 | 
            +
                    OUR SAMi OTRo UNRo PUBi IND UNI STA"
         | 
| 42 | 
            +
                  Set-Cookie:
         | 
| 43 | 
            +
                  - _BookingSync_session=935814eaeb1aa79391b3aa00b9333f8b; path=/; secure; HttpOnly
         | 
| 44 | 
            +
                  X-Request-Id:
         | 
| 45 | 
            +
                  - 69328fd1b08a442833168a097f687d6a
         | 
| 46 | 
            +
                  X-Runtime:
         | 
| 47 | 
            +
                  - '0.291235'
         | 
| 48 | 
            +
                  Date:
         | 
| 49 | 
            +
                  - Fri, 25 Apr 2014 11:18:43 GMT
         | 
| 50 | 
            +
                  Connection:
         | 
| 51 | 
            +
                  - close
         | 
| 52 | 
            +
                body:
         | 
| 53 | 
            +
                  encoding: UTF-8
         | 
| 54 | 
            +
                  string: ''
         | 
| 55 | 
            +
                http_version: 
         | 
| 56 | 
            +
              recorded_at: Fri, 25 Apr 2014 11:18:43 GMT
         | 
| 57 | 
            +
            recorded_with: VCR 2.9.0
         |