bookingsync-api 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/bookingsync-api.gemspec +1 -0
  4. data/lib/bookingsync/api/client.rb +41 -24
  5. data/lib/bookingsync/api/client/payments.rb +1 -1
  6. data/lib/bookingsync/api/client/rentals.rb +2 -2
  7. data/lib/bookingsync/api/version.rb +1 -1
  8. data/spec/bookingsync/api/client/accounts_spec.rb +8 -2
  9. data/spec/bookingsync/api/client/amenities_spec.rb +8 -2
  10. data/spec/bookingsync/api/client/availabilities_spec.rb +8 -2
  11. data/spec/bookingsync/api/client/bathrooms_spec.rb +25 -12
  12. data/spec/bookingsync/api/client/bedrooms_spec.rb +24 -11
  13. data/spec/bookingsync/api/client/booking_comments_spec.rb +23 -10
  14. data/spec/bookingsync/api/client/bookings_fees_spec.rb +8 -2
  15. data/spec/bookingsync/api/client/bookings_payments_spec.rb +8 -2
  16. data/spec/bookingsync/api/client/bookings_spec.rb +36 -20
  17. data/spec/bookingsync/api/client/bookings_taxes_spec.rb +8 -2
  18. data/spec/bookingsync/api/client/change_overs_spec.rb +8 -2
  19. data/spec/bookingsync/api/client/clients_spec.rb +23 -13
  20. data/spec/bookingsync/api/client/destinations_spec.rb +8 -2
  21. data/spec/bookingsync/api/client/fees_spec.rb +8 -2
  22. data/spec/bookingsync/api/client/inquiries_spec.rb +13 -7
  23. data/spec/bookingsync/api/client/living_rooms_spec.rb +22 -9
  24. data/spec/bookingsync/api/client/nightly_rate_maps_spec.rb +15 -6
  25. data/spec/bookingsync/api/client/payment_gateways_spec.rb +8 -2
  26. data/spec/bookingsync/api/client/payments_spec.rb +34 -16
  27. data/spec/bookingsync/api/client/periods_spec.rb +29 -14
  28. data/spec/bookingsync/api/client/photos_spec.rb +23 -9
  29. data/spec/bookingsync/api/client/preferences_general_settings_spec.rb +11 -4
  30. data/spec/bookingsync/api/client/rates_rules_spec.rb +25 -12
  31. data/spec/bookingsync/api/client/rates_spec.rb +8 -2
  32. data/spec/bookingsync/api/client/rates_tables_spec.rb +23 -10
  33. data/spec/bookingsync/api/client/rental_agreements_spec.rb +18 -8
  34. data/spec/bookingsync/api/client/rental_cancelation_policies_spec.rb +8 -1
  35. data/spec/bookingsync/api/client/rental_cancelation_policy_items_spec.rb +8 -1
  36. data/spec/bookingsync/api/client/rentals_amenities_spec.rb +22 -9
  37. data/spec/bookingsync/api/client/rentals_fees_spec.rb +14 -5
  38. data/spec/bookingsync/api/client/rentals_spec.rb +53 -19
  39. data/spec/bookingsync/api/client/reviews_spec.rb +12 -6
  40. data/spec/bookingsync/api/client/seasons_spec.rb +30 -14
  41. data/spec/bookingsync/api/client/sources_spec.rb +17 -8
  42. data/spec/bookingsync/api/client/special_offers_spec.rb +30 -15
  43. data/spec/bookingsync/api/client/strict_bookings_spec.rb +10 -14
  44. data/spec/bookingsync/api/client/taxes_spec.rb +8 -2
  45. data/spec/bookingsync/api/client_spec.rb +23 -7
  46. data/spec/bookingsync/api/relation_spec.rb +1 -1
  47. data/spec/bookingsync/api/resource_spec.rb +8 -8
  48. data/spec/bookingsync/api/response_spec.rb +8 -8
  49. data/spec/fixtures/cassettes/BookingSync_API_Client_Accounts/_account/returns_a_single_account.yml +26 -18
  50. data/spec/fixtures/cassettes/BookingSync_API_Client_Accounts/_accounts/returns_accounts.yml +26 -18
  51. data/spec/fixtures/cassettes/BookingSync_API_Client_Amenities/_amenities/returns_amenities.yml +220 -26
  52. data/spec/fixtures/cassettes/BookingSync_API_Client_Amenities/_amenity/returns_amenity.yml +50 -26
  53. data/spec/fixtures/cassettes/BookingSync_API_Client_Availabilities/_availabilities/returns_availabilities.yml +37 -21
  54. data/spec/fixtures/cassettes/BookingSync_API_Client_Availabilities/_availability/returns_a_single_availability.yml +33 -25
  55. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_bathroom/returns_a_single_bathroom.yml +26 -18
  56. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_bathrooms/returns_bathrooms.yml +33 -22
  57. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_cancel_bathroom/cancels_given_bathroom.yml +21 -15
  58. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_create_bathroom/creates_a_new_bathroom.yml +30 -19
  59. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_edit_bathroom/updates_given_bathroom_by_ID.yml +26 -19
  60. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_bedroom/returns_a_single_bedroom.yml +26 -18
  61. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_bedrooms/returns_bedrooms.yml +32 -24
  62. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_cancel_bedroom/cancels_given_bedroom.yml +21 -15
  63. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_create_bedroom/creates_a_new_bedroom.yml +29 -18
  64. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_edit_bedroom/updates_given_bedroom_by_ID.yml +25 -19
  65. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_booking_comment/returns_single_booking_comment.yml +42 -26
  66. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_booking_comments/returns_booking_comments.yml +45 -33
  67. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_create_booking_comment/creates_booking_comment.yml +43 -24
  68. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_create_booking_comment/returns_newly_created_booking_comment.yml +43 -24
  69. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_delete_booking_comment/deletes_given_booking_comment.yml +29 -17
  70. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_edit_booking_comment/returns_updated_booking_comment.yml +36 -22
  71. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_edit_booking_comment/updates_booking_comment.yml +36 -22
  72. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_booking/returns_a_single_booking.yml +44 -26
  73. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_booking/returns_a_single_canceled_booking.yml +30 -23
  74. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_a_block/yields_block_with_batch_of_bookings.yml +100 -115
  75. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_auto_paginate_true/returns_all_bookings_joined_from_many_requests.yml +100 -115
  76. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_per_page_setting/returns_limited_number_of_bookings.yml +52 -28
  77. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_bookings/returns_bookings.yml +57 -25
  78. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_cancel_booking/cancels_given_booking.yml +36 -20
  79. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_create_booking/creates_a_booking.yml +49 -26
  80. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_edit_booking/updates_given_booking_by_ID.yml +44 -24
  81. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsFees/_bookings_fee/returns_a_single_bookings_fee.yml +26 -18
  82. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsFees/_bookings_fees/returns_bookings_fees.yml +27 -19
  83. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsPayments/_bookings_payment/returns_a_single_bookings_payment.yml +26 -18
  84. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsPayments/_bookings_payments/returns_bookings_payments.yml +51 -28
  85. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsTaxes/_bookings_tax/returns_a_single_bookings_tax.yml +26 -18
  86. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsTaxes/_bookings_taxes/returns_bookings_taxes.yml +28 -20
  87. data/spec/fixtures/cassettes/BookingSync_API_Client_ChangeOvers/_change_over/returns_a_single_change_over.yml +44 -38
  88. data/spec/fixtures/cassettes/BookingSync_API_Client_ChangeOvers/_change_overs/returns_change_overs.yml +43 -37
  89. data/spec/fixtures/cassettes/BookingSync_API_Client_Clients/_client/returns_a_single_client.yml +27 -19
  90. data/spec/fixtures/cassettes/BookingSync_API_Client_Clients/_clients/returns_clients.yml +32 -26
  91. data/spec/fixtures/cassettes/BookingSync_API_Client_Clients/_create_client/creates_a_new_client.yml +30 -19
  92. data/spec/fixtures/cassettes/BookingSync_API_Client_Clients/_edit_client/updates_given_client_by_ID.yml +25 -19
  93. data/spec/fixtures/cassettes/BookingSync_API_Client_Destinations/_destination/returns_a_single_destination.yml +29 -24
  94. data/spec/fixtures/cassettes/BookingSync_API_Client_Destinations/_destinations/returns_destinations.yml +59 -25
  95. data/spec/fixtures/cassettes/BookingSync_API_Client_Fees/_create_fee/creates_a_new_fee.yml +25 -18
  96. data/spec/fixtures/cassettes/BookingSync_API_Client_Fees/_fee/returns_a_single_fee.yml +26 -18
  97. data/spec/fixtures/cassettes/BookingSync_API_Client_Fees/_fees/returns_fees.yml +31 -19
  98. data/spec/fixtures/cassettes/BookingSync_API_Client_Inquiries/_create_inquiry/creates_a_new_inquiry.yml +50 -27
  99. data/spec/fixtures/cassettes/BookingSync_API_Client_Inquiries/_inquiries/returns_inquiries.yml +50 -26
  100. data/spec/fixtures/cassettes/BookingSync_API_Client_Inquiries/_inquiry/returns_a_single_inquiry.yml +29 -21
  101. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_cancel_living_room/cancels_given_living_room.yml +35 -31
  102. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_create_living_room/creates_a_new_living_room.yml +41 -37
  103. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_edit_living_room/updates_given_living_room_by_ID.yml +38 -34
  104. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_living_room/returns_a_single_living_room.yml +44 -40
  105. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_living_rooms/returns_living_rooms.yml +43 -39
  106. data/spec/fixtures/cassettes/BookingSync_API_Client_NightlyRateMaps/_edit_nightly_rate_map/updates_given_nightly_rate_map_by_ID.yml +39 -33
  107. data/spec/fixtures/cassettes/BookingSync_API_Client_NightlyRateMaps/_nightly_rate_map/returns_a_single_nightly_rate_map.yml +44 -38
  108. data/spec/fixtures/cassettes/BookingSync_API_Client_NightlyRateMaps/_nightly_rate_maps/returns_nightly_rate_maps.yml +44 -38
  109. data/spec/fixtures/cassettes/BookingSync_API_Client_PaymentGateways/_payment_gateway/returns_a_single_payment_gateway.yml +38 -24
  110. data/spec/fixtures/cassettes/BookingSync_API_Client_PaymentGateways/_payment_gateways/returns_payment_gateways.yml +37 -23
  111. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_cancel_payment/cancels_given_payment.yml +36 -20
  112. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_create_payment/creates_a_new_payment.yml +50 -26
  113. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_edit_payment/updates_given_payment_by_ID.yml +44 -25
  114. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_payment/returns_a_single_payment.yml +26 -18
  115. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_payments/returns_payments.yml +55 -27
  116. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_create_period/creates_a_new_period.yml +49 -26
  117. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_delete_period/deletes_given_period.yml +35 -19
  118. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_edit_period/updates_given_period_by_ID.yml +43 -25
  119. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_period/returns_a_single_period.yml +28 -20
  120. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_periods/returns_periods.yml +49 -25
  121. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_create_photo/creates_a_photo.yml +47 -24
  122. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_create_photo/creates_a_photo_with_encoded_photo_file.yml +47 -24
  123. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_create_photo/creates_a_photo_with_photo_path.yml +47 -24
  124. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_create_photo/creates_a_photo_with_remote_URL.yml +47 -24
  125. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_delete_photo/delete_given_photo.yml +37 -21
  126. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_edit_photo/updates_photo_s_description.yml +42 -23
  127. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_edit_photo/updates_photo_s_image_file.yml +42 -23
  128. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_photo/returns_a_single_photo.yml +28 -20
  129. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_photos/returns_photos.yml +38 -22
  130. data/spec/fixtures/cassettes/BookingSync_API_Client_PreferencesGeneralSettings/_edit_preferences_general_setting/updates_given_preferences_general_setting_by_ID.yml +39 -34
  131. data/spec/fixtures/cassettes/BookingSync_API_Client_PreferencesGeneralSettings/_preferences_general_settings/returns_preferences_general_settings.yml +50 -42
  132. data/spec/fixtures/cassettes/BookingSync_API_Client_Rates/_rate/returns_a_single_rate.yml +28 -20
  133. data/spec/fixtures/cassettes/BookingSync_API_Client_Rates/_rates/returns_rates.yml +48 -24
  134. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_create_rates_rule/creates_a_new_rates_rule.yml +29 -18
  135. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_delete_rates_rule/deletes_given_rates_rule.yml +21 -15
  136. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_edit_rates_rule/updates_given_rates_rule_by_ID.yml +24 -18
  137. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_rates_rule/returns_a_single_rates_rule.yml +26 -18
  138. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_rates_rules/returns_rates_rules.yml +27 -19
  139. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_create_rates_table/creates_a_new_rates_table.yml +49 -26
  140. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_delete_rates_table/deletes_given_rates_table.yml +36 -20
  141. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_edit_rates_table/updates_given_rates_table_by_ID.yml +43 -25
  142. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_rates_table/returns_a_single_rates_table.yml +26 -18
  143. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_rates_tables/returns_rates_tables.yml +54 -36
  144. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement/creates_a_new_rental_agreement.yml +50 -26
  145. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement_for_booking/creates_a_new_rental_agreement.yml +50 -26
  146. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement_for_rental/creates_a_new_rental_agreement.yml +50 -26
  147. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_rental_agreement/returns_a_single_rental_agreement.yml +30 -21
  148. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_rental_agreements/returns_rental_agreements.yml +52 -26
  149. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalCancelationPolicies/_rental_cancelation_policies/returns_rental_cancelation_policies.yml +48 -27
  150. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalCancelationPolicies/_rental_cancelation_policy/returns_a_single_rental_cancelation_policy.yml +42 -26
  151. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalCancelationPolicyItems/_rental_cancelation_policy_item/returns_a_single_rental_cancelation_policy_item.yml +41 -25
  152. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalCancelationPolicyItems/_rental_cancelation_policy_items/returns_rental_cancelation_policy_items.yml +43 -26
  153. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_create_rental/creates_a_new_rental.yml +49 -26
  154. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_delete_rental/deletes_given_rental.yml +36 -20
  155. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_edit_rental/updates_given_rental_by_ID.yml +44 -28
  156. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rental/returns_a_single_rental.yml +234 -31
  157. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rental/with_additional_query_params/returns_a_single_rental_with_defined_params.yml +322 -0
  158. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals/links/returns_associated_photos.yml +453 -77
  159. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals/returns_rentals.yml +405 -54
  160. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals/returns_rentals_by_ids.yml +336 -32
  161. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_meta/returns_meta_information_about_all_rentals.yml +53 -25
  162. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_meta/returns_meta_information_about_requested_rentals.yml +55 -26
  163. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_search/performs_autopagination_using_POST.yml +121 -81
  164. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_search/rentals_ids_given/makes_a_search_within_given_rentals.yml +42 -28
  165. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_search/returns_rentals.yml +42 -28
  166. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_create_rentals_amenity/creates_a_new_rentals_amenity.yml +29 -18
  167. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_delete_rentals_amenity/deletes_given_rentals_amenity.yml +21 -15
  168. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_edit_rentals_amenity/updates_given_rentals_amenity_by_ID.yml +24 -18
  169. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_rentals_amenities/links/returns_associated_amenity.yml +104 -52
  170. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_rentals_amenities/links/returns_associated_rental.yml +283 -53
  171. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_rentals_amenities/returns_rentals_amenities.yml +51 -26
  172. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_rentals_amenity/returns_rentals_amenity.yml +50 -26
  173. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsFees/_create_rentals_fee/creates_a_new_rentals_fee.yml +30 -19
  174. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsFees/_rentals_fee/returns_a_single_rentals_fee.yml +30 -22
  175. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsFees/_rentals_fees/returns_rentals_fees.yml +27 -18
  176. data/spec/fixtures/cassettes/BookingSync_API_Client_Reviews/_create_review/creates_a_new_review.yml +49 -26
  177. data/spec/fixtures/cassettes/BookingSync_API_Client_Reviews/_review/returns_a_single_review.yml +26 -18
  178. data/spec/fixtures/cassettes/BookingSync_API_Client_Reviews/_reviews/returns_reviews.yml +41 -33
  179. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_create_season/creates_a_new_season.yml +50 -27
  180. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_delete_season/deletes_given_season.yml +36 -20
  181. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_edit_season/updates_given_season_by_ID.yml +44 -26
  182. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_season/returns_a_single_season.yml +29 -21
  183. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_seasons/returns_seasons.yml +55 -36
  184. data/spec/fixtures/cassettes/BookingSync_API_Client_Sources/_create_source/creates_a_new_source.yml +40 -25
  185. data/spec/fixtures/cassettes/BookingSync_API_Client_Sources/_edit_source/updates_given_source_by_ID.yml +36 -25
  186. data/spec/fixtures/cassettes/BookingSync_API_Client_Sources/_source/returns_a_single_source.yml +26 -18
  187. data/spec/fixtures/cassettes/BookingSync_API_Client_Sources/_sources/returns_sources.yml +42 -24
  188. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_create_special_offer/creates_a_new_special_offer.yml +50 -26
  189. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_delete_special_offer/deletes_given_special_offer.yml +36 -20
  190. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_edit_special_offer/updates_given_special_offer_by_ID.yml +44 -25
  191. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_special_offer/returns_a_single_special_offer.yml +29 -22
  192. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_special_offers/returns_special_offers.yml +48 -24
  193. data/spec/fixtures/cassettes/BookingSync_API_Client_StrictBookings/_create_strict_booking/creates_a_booking.yml +43 -24
  194. data/spec/fixtures/cassettes/BookingSync_API_Client_Taxes/_tax/returns_a_single_tax.yml +26 -18
  195. data/spec/fixtures/cassettes/BookingSync_API_Client_Taxes/_taxes/returns_taxes.yml +28 -19
  196. data/spec/spec_helper.rb +6 -0
  197. data/spec/support/vcr_helper.rb +29 -0
  198. metadata +21 -10
  199. data/lib/bookingsync/api/client/preferences_payments.rb +0 -22
  200. data/spec/bookingsync/api/client/preferences_payments_spec.rb +0 -12
  201. data/spec/fixtures/cassettes/BookingSync_API_Client_PreferencesPayments/_preferences_payments/returns_preferences_payments.yml +0 -80
  202. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals/links/returns_links_to_associated_resources.yml +0 -91
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: put
5
- uri: https://www.bookingsync.com/api/v3/photos/37
5
+ uri: https://www.bookingsync.com/api/v3/photos/314250
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"photos":[{"description_en":"Not funny anymore"}]}'
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.0
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,45 +17,64 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
23
27
  message: OK
24
28
  headers:
29
+ Server:
30
+ - nginx
31
+ Date:
32
+ - Mon, 12 Dec 2016 12:04:34 GMT
33
+ Content-Type:
34
+ - application/vnd.api+json; charset=utf-8
35
+ Transfer-Encoding:
36
+ - chunked
37
+ Connection:
38
+ - keep-alive
39
+ Status:
40
+ - 200 OK
41
+ X-Frame-Options:
42
+ - SAMEORIGIN
43
+ X-Xss-Protection:
44
+ - 1; mode=block
45
+ X-Content-Type-Options:
46
+ - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 12:04:33 UTC
25
49
  X-Ratelimit-Limit:
26
50
  - '1000'
27
51
  X-Ratelimit-Reset:
28
- - '1399640400'
52
+ - '1481547600'
29
53
  X-Ratelimit-Remaining:
30
- - '957'
31
- Access-Control-Allow-Origin:
32
- - '*'
33
- Access-Control-Request-Method:
34
- - '*'
35
- Content-Type:
36
- - application/vnd.api+json; charset=utf-8
37
- X-Ua-Compatible:
38
- - IE=Edge
54
+ - '989'
39
55
  Etag:
40
- - '"fa2396ab07706d75fb2eabf114b05611"'
56
+ - W/"64af8368ce774bfb6aa0efd63547da66"
41
57
  Cache-Control:
42
58
  - max-age=0, private, must-revalidate
43
59
  P3p:
44
60
  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
45
61
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
46
62
  Set-Cookie:
47
- - _BookingSync_session=732488fdeccb8022b7b1e9a65c95a122; path=/; secure; HttpOnly
63
+ - ahoy_track=true; path=/; secure
64
+ - ahoy_visit=5cfe2b72-8215-4884-a8bb-441260930699; path=/; expires=Mon, 19 Dec
65
+ 2016 12:04:33 -0000; secure
66
+ - ahoy_visitor=87a10af8-8d96-4f97-9fcc-4eb73ea1dd41; path=/; expires=Wed, 12
67
+ Dec 2018 12:04:33 -0000; secure
48
68
  X-Request-Id:
49
- - ea1b2fbf648f9690df17c411c8d50147
69
+ - df233fa4-c51b-4475-bd36-e6a86707a32b
50
70
  X-Runtime:
51
- - '0.055268'
52
- Date:
53
- - Fri, 09 May 2014 12:37:34 GMT
54
- Connection:
55
- - close
71
+ - '0.130059'
72
+ Strict-Transport-Security:
73
+ - max-age=31536000
56
74
  body:
57
75
  encoding: UTF-8
58
- string: '{"photos":[{"id":37,"rental_id":2,"description":{"en":"Not funny anymore"},"kind":"livingroom","large_url":"https:://www.bookingsync.com/files/development/photo/photo/37/large_b0e94d712c4916323d4c7da35635f02e.jpg","normal_url":"https:://www.bookingsync.com/files/development/photo/photo/37/normal_b0e94d712c4916323d4c7da35635f02e.jpg","thumb_url":"https:://www.bookingsync.com/files/development/photo/photo/37/thumb_b0e94d712c4916323d4c7da35635f02e.jpg","micro_url":"https:://www.bookingsync.com/files/development/photo/photo/37/micro_b0e94d712c4916323d4c7da35635f02e.jpg","position":8}]}'
76
+ string: '{"links":{"photos.account":"https://www.bookingsync.com/api/v3/accounts/{photos.account}","photos.rental":"https://www.bookingsync.com/api/v3/rentals/{photos.rental}"},"photos":[{"links":{"account":3837,"rental":5116},"id":314250,"description":{"en":"Not
77
+ funny anymore"},"kind":"livingroom","micro_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_32,q_90,w_48/v1481543533/photo_3y4_ipk38n.jpg","thumb_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_64,q_90,w_96/v1481543533/photo_3y4_ipk38n.jpg","small_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_128,q_90,w_192/v1481543533/photo_3y4_ipk38n.jpg","compact_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_256,q_90,w_384/v1481543533/photo_3y4_ipk38n.jpg","medium_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_512,q_90,w_768/v1481543533/photo_3y4_ipk38n.jpg","large_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_800,q_90,w_1200/v1481543533/photo_3y4_ipk38n.jpg","grande_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1024,q_90,w_1536/v1481543533/photo_3y4_ipk38n.jpg","giant_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1600,q_90,w_2400/v1481543533/photo_3y4_ipk38n.jpg","position":27,"created_at":"2016-12-12T11:52:12Z","updated_at":"2016-12-12T12:04:33Z"}],"meta":{}}'
59
78
  http_version:
60
- recorded_at: Fri, 09 May 2014 12:37:34 GMT
61
- recorded_with: VCR 2.9.0
79
+ recorded_at: Mon, 12 Dec 2016 12:04:34 GMT
80
+ recorded_with: VCR 3.0.3
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: put
5
- uri: https://www.bookingsync.com/api/v3/photos/37
5
+ uri: https://www.bookingsync.com/api/v3/photos/314250
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"photos":[{"file_path":"spec/fixtures/files/test.jpg"}]}'
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.0
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,45 +17,64 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
23
27
  message: OK
24
28
  headers:
29
+ Server:
30
+ - nginx
31
+ Date:
32
+ - Mon, 12 Dec 2016 12:04:34 GMT
33
+ Content-Type:
34
+ - application/vnd.api+json; charset=utf-8
35
+ Transfer-Encoding:
36
+ - chunked
37
+ Connection:
38
+ - keep-alive
39
+ Status:
40
+ - 200 OK
41
+ X-Frame-Options:
42
+ - SAMEORIGIN
43
+ X-Xss-Protection:
44
+ - 1; mode=block
45
+ X-Content-Type-Options:
46
+ - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 12:04:34 UTC
25
49
  X-Ratelimit-Limit:
26
50
  - '1000'
27
51
  X-Ratelimit-Reset:
28
- - '1399640400'
52
+ - '1481547600'
29
53
  X-Ratelimit-Remaining:
30
- - '956'
31
- Access-Control-Allow-Origin:
32
- - '*'
33
- Access-Control-Request-Method:
34
- - '*'
35
- Content-Type:
36
- - application/vnd.api+json; charset=utf-8
37
- X-Ua-Compatible:
38
- - IE=Edge
54
+ - '988'
39
55
  Etag:
40
- - '"fa2396ab07706d75fb2eabf114b05611"'
56
+ - W/"64af8368ce774bfb6aa0efd63547da66"
41
57
  Cache-Control:
42
58
  - max-age=0, private, must-revalidate
43
59
  P3p:
44
60
  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
45
61
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
46
62
  Set-Cookie:
47
- - _BookingSync_session=0c097a8bd41227def9c3094c3fa7dd39; path=/; secure; HttpOnly
63
+ - ahoy_track=true; path=/; secure
64
+ - ahoy_visit=a42833d1-ef62-48e1-afe0-3947e41ceb27; path=/; expires=Mon, 19 Dec
65
+ 2016 12:04:34 -0000; secure
66
+ - ahoy_visitor=8083c082-6233-4604-b38a-bb0b356f37d6; path=/; expires=Wed, 12
67
+ Dec 2018 12:04:34 -0000; secure
48
68
  X-Request-Id:
49
- - 52e6a798d206d50f21080e02a7ed83c6
69
+ - 083fec85-89ad-4a5c-843a-3892c201bf9f
50
70
  X-Runtime:
51
- - '0.049991'
52
- Date:
53
- - Fri, 09 May 2014 12:37:34 GMT
54
- Connection:
55
- - close
71
+ - '0.125936'
72
+ Strict-Transport-Security:
73
+ - max-age=31536000
56
74
  body:
57
75
  encoding: UTF-8
58
- string: '{"photos":[{"id":37,"rental_id":2,"description":{"en":"Not funny anymore"},"kind":"livingroom","large_url":"https:://www.bookingsync.com/files/development/photo/photo/37/large_b0e94d712c4916323d4c7da35635f02e.jpg","normal_url":"https:://www.bookingsync.com/files/development/photo/photo/37/normal_b0e94d712c4916323d4c7da35635f02e.jpg","thumb_url":"https:://www.bookingsync.com/files/development/photo/photo/37/thumb_b0e94d712c4916323d4c7da35635f02e.jpg","micro_url":"https:://www.bookingsync.com/files/development/photo/photo/37/micro_b0e94d712c4916323d4c7da35635f02e.jpg","position":8}]}'
76
+ string: '{"links":{"photos.account":"https://www.bookingsync.com/api/v3/accounts/{photos.account}","photos.rental":"https://www.bookingsync.com/api/v3/rentals/{photos.rental}"},"photos":[{"links":{"account":3837,"rental":5116},"id":314250,"description":{"en":"Not
77
+ funny anymore"},"kind":"livingroom","micro_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_32,q_90,w_48/v1481543533/photo_3y4_ipk38n.jpg","thumb_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_64,q_90,w_96/v1481543533/photo_3y4_ipk38n.jpg","small_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_128,q_90,w_192/v1481543533/photo_3y4_ipk38n.jpg","compact_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_256,q_90,w_384/v1481543533/photo_3y4_ipk38n.jpg","medium_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_512,q_90,w_768/v1481543533/photo_3y4_ipk38n.jpg","large_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_800,q_90,w_1200/v1481543533/photo_3y4_ipk38n.jpg","grande_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1024,q_90,w_1536/v1481543533/photo_3y4_ipk38n.jpg","giant_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1600,q_90,w_2400/v1481543533/photo_3y4_ipk38n.jpg","position":27,"created_at":"2016-12-12T11:52:12Z","updated_at":"2016-12-12T12:04:33Z"}],"meta":{}}'
59
78
  http_version:
60
- recorded_at: Fri, 09 May 2014 12:37:34 GMT
61
- recorded_with: VCR 2.9.0
79
+ recorded_at: Mon, 12 Dec 2016 12:04:34 GMT
80
+ recorded_with: VCR 3.0.3
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://www.bookingsync.com/api/v3/photos/5793
5
+ uri: https://www.bookingsync.com/api/v3/photos/5775
6
6
  body:
7
- encoding: US-ASCII
8
- string: ''
7
+ encoding: UTF-8
8
+ string: "{}"
9
9
  headers:
10
10
  User-Agent:
11
- - BookingSync API gem v0.0.29
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,6 +17,10 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
@@ -25,7 +29,7 @@ http_interactions:
25
29
  Server:
26
30
  - nginx
27
31
  Date:
28
- - Wed, 09 Sep 2015 20:22:52 GMT
32
+ - Mon, 12 Dec 2016 11:43:52 GMT
29
33
  Content-Type:
30
34
  - application/vnd.api+json; charset=utf-8
31
35
  Transfer-Encoding:
@@ -34,29 +38,31 @@ http_interactions:
34
38
  - keep-alive
35
39
  Status:
36
40
  - 200 OK
37
- Strict-Transport-Security:
38
- - max-age=31536000
39
41
  X-Frame-Options:
40
42
  - SAMEORIGIN
41
43
  X-Xss-Protection:
42
44
  - 1; mode=block
43
45
  X-Content-Type-Options:
44
46
  - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 11:43:52 UTC
45
49
  X-Ratelimit-Limit:
46
50
  - '1000'
47
51
  X-Ratelimit-Reset:
48
- - '1441832400'
52
+ - '1481544000'
49
53
  X-Ratelimit-Remaining:
50
- - '960'
54
+ - '930'
51
55
  Link:
52
- - <https://www.bookingsync.com/api/v3/photos/5793?page=1>; rel="first", <https://www.bookingsync.com/api/v3/photos/5793?page=1>;
56
+ - <https://www.bookingsync.com/api/v3/photos/5775?page=1>; rel="first", <https://www.bookingsync.com/api/v3/photos/5775?page=1>;
53
57
  rel="last"
54
58
  X-Total-Pages:
55
59
  - '1'
56
60
  X-Total-Count:
57
61
  - '1'
62
+ X-Per-Page:
63
+ - '100'
58
64
  Etag:
59
- - '"c35696f1c1211f3bb66c729759174d94"'
65
+ - W/"7911bef6aff8bcc7b4adba7e272ebd9f"
60
66
  Cache-Control:
61
67
  - max-age=0, private, must-revalidate
62
68
  P3p:
@@ -64,17 +70,19 @@ http_interactions:
64
70
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
65
71
  Set-Cookie:
66
72
  - ahoy_track=true; path=/; secure
67
- - ahoy_visit=14a93957-acaf-4fc1-865a-a187dd8542d8; path=/; expires=Wed, 16 Sep
68
- 2015 20:22:52 -0000; secure
69
- - ahoy_visitor=fb271695-12ce-48dc-b1b6-ec890886a612; path=/; expires=Sat, 09
70
- Sep 2017 20:22:52 -0000; secure
73
+ - ahoy_visit=4d9bab81-a9b0-464d-860d-40e961840d8d; path=/; expires=Mon, 19 Dec
74
+ 2016 11:43:52 -0000; secure
75
+ - ahoy_visitor=df1ec91a-b10a-43f9-bb0d-a00b3be8bd3b; path=/; expires=Wed, 12
76
+ Dec 2018 11:43:52 -0000; secure
71
77
  X-Request-Id:
72
- - ef15145c-aee1-4cd6-b47a-98107590a667
78
+ - 637d9279-7bad-4d27-9de1-f88d975b76ab
73
79
  X-Runtime:
74
- - '0.085202'
80
+ - '0.034606'
81
+ Strict-Transport-Security:
82
+ - max-age=31536000
75
83
  body:
76
84
  encoding: UTF-8
77
- string: '{"links":{"photos.rental":"https://www.bookingsync.com/api/v3/rentals/{photos.rental}"},"photos":[{"links":{"rental":5117},"id":5793,"description":{},"kind":null,"micro_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,fl_progressive,g_center,h_32,q_90,w_48/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","thumb_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,fl_progressive,g_center,h_64,q_90,w_96/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","small_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,fl_progressive,g_center,h_128,q_90,w_192/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","compact_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,fl_progressive,g_center,h_256,q_90,w_384/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","medium_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,fl_progressive,g_center,h_512,q_90,w_768/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","large_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,fl_progressive,g_center,h_800,q_90,w_1200/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","grande_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","giant_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","position":10,"created_at":"2014-08-08T19:33:22Z","updated_at":"2014-12-08T12:26:48Z"}]}'
85
+ string: '{"links":{"photos.account":"https://www.bookingsync.com/api/v3/accounts/{photos.account}","photos.rental":"https://www.bookingsync.com/api/v3/rentals/{photos.rental}"},"photos":[{"links":{"account":3837,"rental":5116},"id":5775,"description":{},"kind":null,"micro_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","thumb_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","small_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","compact_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","medium_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","large_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","grande_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","giant_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","position":1,"created_at":"2014-08-08T18:48:54Z","updated_at":"2015-11-09T10:11:50Z"}],"meta":{}}'
78
86
  http_version:
79
- recorded_at: Wed, 09 Sep 2015 20:22:53 GMT
80
- recorded_with: VCR 2.9.2
87
+ recorded_at: Mon, 12 Dec 2016 11:43:52 GMT
88
+ recorded_with: VCR 3.0.3
@@ -4,11 +4,11 @@ http_interactions:
4
4
  method: get
5
5
  uri: https://www.bookingsync.com/api/v3/photos
6
6
  body:
7
- encoding: US-ASCII
8
- string: ''
7
+ encoding: UTF-8
8
+ string: "{}"
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.0
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,6 +17,10 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
@@ -25,7 +29,7 @@ http_interactions:
25
29
  Server:
26
30
  - nginx
27
31
  Date:
28
- - Tue, 08 Apr 2014 20:04:46 GMT
32
+ - Mon, 12 Dec 2016 11:32:45 GMT
29
33
  Content-Type:
30
34
  - application/vnd.api+json; charset=utf-8
31
35
  Transfer-Encoding:
@@ -34,39 +38,51 @@ http_interactions:
34
38
  - keep-alive
35
39
  Status:
36
40
  - 200 OK
41
+ X-Frame-Options:
42
+ - SAMEORIGIN
43
+ X-Xss-Protection:
44
+ - 1; mode=block
45
+ X-Content-Type-Options:
46
+ - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 11:32:45 UTC
37
49
  X-Ratelimit-Limit:
38
50
  - '1000'
39
51
  X-Ratelimit-Reset:
40
- - '1396990800.0'
52
+ - '1481544000'
41
53
  X-Ratelimit-Remaining:
42
- - '998'
54
+ - '974'
43
55
  Link:
44
56
  - <https://www.bookingsync.com/api/v3/photos?page=1>; rel="first", <https://www.bookingsync.com/api/v3/photos?page=1>;
45
57
  rel="last"
46
58
  X-Total-Pages:
47
59
  - '1'
48
- Access-Control-Allow-Origin:
49
- - '*'
50
- Access-Control-Request-Method:
51
- - '*'
52
- X-Ua-Compatible:
53
- - IE=Edge,chrome=1
60
+ X-Total-Count:
61
+ - '25'
62
+ X-Per-Page:
63
+ - '100'
54
64
  Etag:
55
- - '"017d37489332e3a29069c74028c63efa"'
65
+ - W/"7198136d561492f974ae192c080ce24d"
56
66
  Cache-Control:
57
- - must-revalidate, private, max-age=0
67
+ - max-age=0, private, must-revalidate
58
68
  P3p:
59
69
  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
60
70
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
71
+ Set-Cookie:
72
+ - ahoy_track=true; path=/; secure
73
+ - ahoy_visit=3a793411-8b04-4583-93ec-8ee64767d202; path=/; expires=Mon, 19 Dec
74
+ 2016 11:32:45 -0000; secure
75
+ - ahoy_visitor=fd1ff155-7636-4752-99a2-f4703c612563; path=/; expires=Wed, 12
76
+ Dec 2018 11:32:45 -0000; secure
61
77
  X-Request-Id:
62
- - dad79aed88286af48066f52389be2aac
78
+ - 86fa42ab-c2ae-4f53-8487-10f60bd02a82
63
79
  X-Runtime:
64
- - '0.282323'
65
- X-Rack-Cache:
66
- - miss
80
+ - '0.166905'
81
+ Strict-Transport-Security:
82
+ - max-age=31536000
67
83
  body:
68
84
  encoding: UTF-8
69
- string: '{"photos":[{"id":2,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/2/large_28da69f9d820e5fdbb783e0db394c898.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/2/normal_28da69f9d820e5fdbb783e0db394c898.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/2/thumb_28da69f9d820e5fdbb783e0db394c898.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/2/micro_28da69f9d820e5fdbb783e0db394c898.jpg","position":1},{"id":1,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/1/large_75bfb755b66a9f209f108bb5ae8153a2.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/1/normal_75bfb755b66a9f209f108bb5ae8153a2.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/1/thumb_75bfb755b66a9f209f108bb5ae8153a2.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/1/micro_75bfb755b66a9f209f108bb5ae8153a2.jpg","position":2},{"id":3,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/3/large_5afe2959201eb7359fec4046f36424f3.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/3/normal_5afe2959201eb7359fec4046f36424f3.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/3/thumb_5afe2959201eb7359fec4046f36424f3.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/3/micro_5afe2959201eb7359fec4046f36424f3.jpg","position":3},{"id":4,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/4/large_6740d21a417c6afd724f3c7422f880db.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/4/normal_6740d21a417c6afd724f3c7422f880db.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/4/thumb_6740d21a417c6afd724f3c7422f880db.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/4/micro_6740d21a417c6afd724f3c7422f880db.jpg","position":4},{"id":5,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/5/large_43b778404e56cef89df86c02ca0bdbf4.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/5/normal_43b778404e56cef89df86c02ca0bdbf4.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/5/thumb_43b778404e56cef89df86c02ca0bdbf4.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/5/micro_43b778404e56cef89df86c02ca0bdbf4.jpg","position":5},{"id":6,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/6/large_4d9dd35e89b2058dde70bb65c6c2056e.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/6/normal_4d9dd35e89b2058dde70bb65c6c2056e.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/6/thumb_4d9dd35e89b2058dde70bb65c6c2056e.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/6/micro_4d9dd35e89b2058dde70bb65c6c2056e.jpg","position":6},{"id":7,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/7/large_acde4ebf6062393e85efb04880f6e776.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/7/normal_acde4ebf6062393e85efb04880f6e776.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/7/thumb_acde4ebf6062393e85efb04880f6e776.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/7/micro_acde4ebf6062393e85efb04880f6e776.jpg","position":7},{"id":8,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/8/large_94ef2e074a6a04878a66cd54615db0c1.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/8/normal_94ef2e074a6a04878a66cd54615db0c1.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/8/thumb_94ef2e074a6a04878a66cd54615db0c1.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/8/micro_94ef2e074a6a04878a66cd54615db0c1.jpg","position":8},{"id":9,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/9/large_bca3f46f3550eed7d195fb8f00a682df.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/9/normal_bca3f46f3550eed7d195fb8f00a682df.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/9/thumb_bca3f46f3550eed7d195fb8f00a682df.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/9/micro_bca3f46f3550eed7d195fb8f00a682df.jpg","position":9},{"id":10,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/10/large_daa9e65b80e100312521282442944638.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/10/normal_daa9e65b80e100312521282442944638.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/10/thumb_daa9e65b80e100312521282442944638.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/10/micro_daa9e65b80e100312521282442944638.jpg","position":10},{"id":11,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/11/large_162067b9692e669992402e2421f857d7.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/11/normal_162067b9692e669992402e2421f857d7.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/11/thumb_162067b9692e669992402e2421f857d7.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/11/micro_162067b9692e669992402e2421f857d7.jpg","position":11},{"id":12,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/12/large_11bcce36e72628c0e037941912f1513a.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/12/normal_11bcce36e72628c0e037941912f1513a.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/12/thumb_11bcce36e72628c0e037941912f1513a.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/12/micro_11bcce36e72628c0e037941912f1513a.jpg","position":12},{"id":13,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/13/large_71cca9e4fdd1a5ed636b9ae30b500b11.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/13/normal_71cca9e4fdd1a5ed636b9ae30b500b11.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/13/thumb_71cca9e4fdd1a5ed636b9ae30b500b11.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/13/micro_71cca9e4fdd1a5ed636b9ae30b500b11.jpg","position":13},{"id":14,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/14/large_a47967cb43c871514f53f07d7737ab74.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/14/normal_a47967cb43c871514f53f07d7737ab74.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/14/thumb_a47967cb43c871514f53f07d7737ab74.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/14/micro_a47967cb43c871514f53f07d7737ab74.jpg","position":14},{"id":15,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/15/large_f093131ff9b016f3374c44393836fd06.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/15/normal_f093131ff9b016f3374c44393836fd06.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/15/thumb_f093131ff9b016f3374c44393836fd06.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/15/micro_f093131ff9b016f3374c44393836fd06.jpg","position":15},{"id":16,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/16/large_8f0589265aeda7fbf368633f955c0d1a.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/16/normal_8f0589265aeda7fbf368633f955c0d1a.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/16/thumb_8f0589265aeda7fbf368633f955c0d1a.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/16/micro_8f0589265aeda7fbf368633f955c0d1a.jpg","position":16},{"id":17,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/17/large_68012b53b5a352eff9abc496b0f0513f.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/17/normal_68012b53b5a352eff9abc496b0f0513f.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/17/thumb_68012b53b5a352eff9abc496b0f0513f.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/17/micro_68012b53b5a352eff9abc496b0f0513f.jpg","position":17},{"id":18,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/18/large_19ec4f1b91623196107c05c5d01157c8.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/18/normal_19ec4f1b91623196107c05c5d01157c8.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/18/thumb_19ec4f1b91623196107c05c5d01157c8.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/18/micro_19ec4f1b91623196107c05c5d01157c8.jpg","position":18},{"id":19,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/19/large_57312e99e31c2e2864ab7e227625afe6.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/19/normal_57312e99e31c2e2864ab7e227625afe6.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/19/thumb_57312e99e31c2e2864ab7e227625afe6.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/19/micro_57312e99e31c2e2864ab7e227625afe6.jpg","position":19},{"id":20,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/20/large_b56b96b6ba1ae4f1f5f004005e4ff9aa.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/20/normal_b56b96b6ba1ae4f1f5f004005e4ff9aa.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/20/thumb_b56b96b6ba1ae4f1f5f004005e4ff9aa.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/20/micro_b56b96b6ba1ae4f1f5f004005e4ff9aa.jpg","position":20},{"id":21,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/21/large_309cada884759394fa1768f39837fcc8.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/21/normal_309cada884759394fa1768f39837fcc8.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/21/thumb_309cada884759394fa1768f39837fcc8.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/21/micro_309cada884759394fa1768f39837fcc8.jpg","position":21},{"id":22,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/22/large_4a68b492046e7a5a607318b73cecab25.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/22/normal_4a68b492046e7a5a607318b73cecab25.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/22/thumb_4a68b492046e7a5a607318b73cecab25.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/22/micro_4a68b492046e7a5a607318b73cecab25.jpg","position":22},{"id":23,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/23/large_091b7b3646237e9235fc262550c4b2e6.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/23/normal_091b7b3646237e9235fc262550c4b2e6.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/23/thumb_091b7b3646237e9235fc262550c4b2e6.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/23/micro_091b7b3646237e9235fc262550c4b2e6.jpg","position":23},{"id":24,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/24/large_aa7f908792d14824c66430d34f4b2c96.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/24/normal_aa7f908792d14824c66430d34f4b2c96.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/24/thumb_aa7f908792d14824c66430d34f4b2c96.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/24/micro_aa7f908792d14824c66430d34f4b2c96.jpg","position":24},{"id":25,"rental_id":836,"description":{"en":null},"kind":null,"large_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/25/large_536e2fb7620c3f3a22470db50a21096d.jpg","normal_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/25/normal_536e2fb7620c3f3a22470db50a21096d.jpg","thumb_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/25/thumb_536e2fb7620c3f3a22470db50a21096d.jpg","micro_url":"https://bs-eu.s3.amazonaws.com/app/production/photo/photo/25/micro_536e2fb7620c3f3a22470db50a21096d.jpg","position":25}]}'
70
- http_version:
71
- recorded_at: Tue, 08 Apr 2014 20:04:46 GMT
72
- recorded_with: VCR 2.9.0
85
+ string: '{"links":{"photos.account":"https://www.bookingsync.com/api/v3/accounts/{photos.account}","photos.rental":"https://www.bookingsync.com/api/v3/rentals/{photos.rental}"},"photos":[{"links":{"account":3837,"rental":5116},"id":5775,"description":{},"kind":null,"micro_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","thumb_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","small_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","compact_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","medium_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","large_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","grande_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","giant_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041581/d632f485e815dba0bee126ea4d2b100a.jpg","position":1,"created_at":"2014-08-08T18:48:54Z","updated_at":"2015-11-09T10:11:50Z"},{"links":{"account":3837,"rental":5116},"id":5776,"description":{},"kind":null,"micro_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041583/b298f8ff936027a38e0ca38431857e33.jpg","thumb_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041583/b298f8ff936027a38e0ca38431857e33.jpg","small_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041583/b298f8ff936027a38e0ca38431857e33.jpg","compact_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041583/b298f8ff936027a38e0ca38431857e33.jpg","medium_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041583/b298f8ff936027a38e0ca38431857e33.jpg","large_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041583/b298f8ff936027a38e0ca38431857e33.jpg","grande_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041583/b298f8ff936027a38e0ca38431857e33.jpg","giant_url":"https://res-1.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041583/b298f8ff936027a38e0ca38431857e33.jpg","position":5,"created_at":"2014-08-08T18:49:54Z","updated_at":"2015-11-09T10:11:50Z"},{"links":{"account":3837,"rental":5116},"id":5777,"description":{},"kind":null,"micro_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041584/92e3679330b185700923417ab06b050f.jpg","thumb_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041584/92e3679330b185700923417ab06b050f.jpg","small_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041584/92e3679330b185700923417ab06b050f.jpg","compact_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041584/92e3679330b185700923417ab06b050f.jpg","medium_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041584/92e3679330b185700923417ab06b050f.jpg","large_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041584/92e3679330b185700923417ab06b050f.jpg","grande_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041584/92e3679330b185700923417ab06b050f.jpg","giant_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041584/92e3679330b185700923417ab06b050f.jpg","position":2,"created_at":"2014-08-08T18:50:14Z","updated_at":"2015-11-09T09:56:24Z"},{"links":{"account":3837,"rental":5116},"id":5778,"description":{},"kind":null,"micro_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041587/67881ed9db8c64c822829184bc44ac39.jpg","thumb_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041587/67881ed9db8c64c822829184bc44ac39.jpg","small_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041587/67881ed9db8c64c822829184bc44ac39.jpg","compact_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041587/67881ed9db8c64c822829184bc44ac39.jpg","medium_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041587/67881ed9db8c64c822829184bc44ac39.jpg","large_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041587/67881ed9db8c64c822829184bc44ac39.jpg","grande_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041587/67881ed9db8c64c822829184bc44ac39.jpg","giant_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041587/67881ed9db8c64c822829184bc44ac39.jpg","position":9,"created_at":"2014-08-08T18:52:02Z","updated_at":"2015-11-09T09:56:27Z"},{"links":{"account":3837,"rental":5116},"id":5779,"description":{},"kind":null,"micro_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041590/9f58dc6a9a068fad81f3e5846145ec0b.jpg","thumb_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041590/9f58dc6a9a068fad81f3e5846145ec0b.jpg","small_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041590/9f58dc6a9a068fad81f3e5846145ec0b.jpg","compact_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041590/9f58dc6a9a068fad81f3e5846145ec0b.jpg","medium_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041590/9f58dc6a9a068fad81f3e5846145ec0b.jpg","large_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041590/9f58dc6a9a068fad81f3e5846145ec0b.jpg","grande_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041590/9f58dc6a9a068fad81f3e5846145ec0b.jpg","giant_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041590/9f58dc6a9a068fad81f3e5846145ec0b.jpg","position":7,"created_at":"2014-08-08T18:52:06Z","updated_at":"2015-11-09T09:56:24Z"},{"links":{"account":3837,"rental":5116},"id":5780,"description":{},"kind":null,"micro_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041592/4d93f616c3522ac35760e041731f8994.jpg","thumb_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041592/4d93f616c3522ac35760e041731f8994.jpg","small_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041592/4d93f616c3522ac35760e041731f8994.jpg","compact_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041592/4d93f616c3522ac35760e041731f8994.jpg","medium_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041592/4d93f616c3522ac35760e041731f8994.jpg","large_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041592/4d93f616c3522ac35760e041731f8994.jpg","grande_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041592/4d93f616c3522ac35760e041731f8994.jpg","giant_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041592/4d93f616c3522ac35760e041731f8994.jpg","position":4,"created_at":"2014-08-08T18:52:28Z","updated_at":"2015-11-09T09:56:28Z"},{"links":{"account":3837,"rental":5116},"id":5781,"description":{},"kind":null,"micro_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041593/4ea195a8c440c05c5af0855846a73024.jpg","thumb_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041593/4ea195a8c440c05c5af0855846a73024.jpg","small_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041593/4ea195a8c440c05c5af0855846a73024.jpg","compact_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041593/4ea195a8c440c05c5af0855846a73024.jpg","medium_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041593/4ea195a8c440c05c5af0855846a73024.jpg","large_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041593/4ea195a8c440c05c5af0855846a73024.jpg","grande_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041593/4ea195a8c440c05c5af0855846a73024.jpg","giant_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041593/4ea195a8c440c05c5af0855846a73024.jpg","position":8,"created_at":"2014-08-08T18:52:58Z","updated_at":"2015-11-09T09:56:24Z"},{"links":{"account":3837,"rental":5116},"id":5782,"description":{},"kind":null,"micro_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041596/15401b9954b94f2bacc60a0a03a8d9f7.jpg","thumb_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041596/15401b9954b94f2bacc60a0a03a8d9f7.jpg","small_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041596/15401b9954b94f2bacc60a0a03a8d9f7.jpg","compact_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041596/15401b9954b94f2bacc60a0a03a8d9f7.jpg","medium_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041596/15401b9954b94f2bacc60a0a03a8d9f7.jpg","large_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041596/15401b9954b94f2bacc60a0a03a8d9f7.jpg","grande_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041596/15401b9954b94f2bacc60a0a03a8d9f7.jpg","giant_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041596/15401b9954b94f2bacc60a0a03a8d9f7.jpg","position":6,"created_at":"2014-08-08T18:53:13Z","updated_at":"2015-11-09T09:56:28Z"},{"links":{"account":3837,"rental":5116},"id":5783,"description":{},"kind":null,"micro_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041596/0d1388e46a3aaecd14341a137cda1de1.jpg","thumb_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041596/0d1388e46a3aaecd14341a137cda1de1.jpg","small_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041596/0d1388e46a3aaecd14341a137cda1de1.jpg","compact_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041596/0d1388e46a3aaecd14341a137cda1de1.jpg","medium_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041596/0d1388e46a3aaecd14341a137cda1de1.jpg","large_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041596/0d1388e46a3aaecd14341a137cda1de1.jpg","grande_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041596/0d1388e46a3aaecd14341a137cda1de1.jpg","giant_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041596/0d1388e46a3aaecd14341a137cda1de1.jpg","position":3,"created_at":"2014-08-08T18:53:53Z","updated_at":"2015-11-09T09:56:24Z"},{"links":{"account":3837,"rental":5117},"id":5784,"description":{},"kind":null,"micro_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041599/c1c9b319f0020046894f17b4d742328f.jpg","thumb_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041599/c1c9b319f0020046894f17b4d742328f.jpg","small_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041599/c1c9b319f0020046894f17b4d742328f.jpg","compact_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041599/c1c9b319f0020046894f17b4d742328f.jpg","medium_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041599/c1c9b319f0020046894f17b4d742328f.jpg","large_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041599/c1c9b319f0020046894f17b4d742328f.jpg","grande_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041599/c1c9b319f0020046894f17b4d742328f.jpg","giant_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041599/c1c9b319f0020046894f17b4d742328f.jpg","position":2,"created_at":"2014-08-08T19:32:39Z","updated_at":"2015-11-09T09:56:28Z"},{"links":{"account":3837,"rental":5117},"id":5785,"description":{},"kind":null,"micro_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041599/54adf0cf5e2650281813938dfd59508a.jpg","thumb_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041599/54adf0cf5e2650281813938dfd59508a.jpg","small_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041599/54adf0cf5e2650281813938dfd59508a.jpg","compact_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041599/54adf0cf5e2650281813938dfd59508a.jpg","medium_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041599/54adf0cf5e2650281813938dfd59508a.jpg","large_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041599/54adf0cf5e2650281813938dfd59508a.jpg","grande_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041599/54adf0cf5e2650281813938dfd59508a.jpg","giant_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041599/54adf0cf5e2650281813938dfd59508a.jpg","position":3,"created_at":"2014-08-08T19:32:47Z","updated_at":"2015-11-09T09:56:24Z"},{"links":{"account":3837,"rental":5117},"id":5786,"description":{},"kind":null,"micro_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041601/f3c7e3804ab1d634ca3b1b87a9ba110f.jpg","thumb_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041601/f3c7e3804ab1d634ca3b1b87a9ba110f.jpg","small_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041601/f3c7e3804ab1d634ca3b1b87a9ba110f.jpg","compact_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041601/f3c7e3804ab1d634ca3b1b87a9ba110f.jpg","medium_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041601/f3c7e3804ab1d634ca3b1b87a9ba110f.jpg","large_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041601/f3c7e3804ab1d634ca3b1b87a9ba110f.jpg","grande_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041601/f3c7e3804ab1d634ca3b1b87a9ba110f.jpg","giant_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041601/f3c7e3804ab1d634ca3b1b87a9ba110f.jpg","position":4,"created_at":"2014-08-08T19:32:52Z","updated_at":"2015-11-09T09:56:28Z"},{"links":{"account":3837,"rental":5117},"id":5787,"description":{},"kind":null,"micro_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041602/6da3c27fd28002805e3a5d4f659b4e5d.jpg","thumb_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041602/6da3c27fd28002805e3a5d4f659b4e5d.jpg","small_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041602/6da3c27fd28002805e3a5d4f659b4e5d.jpg","compact_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041602/6da3c27fd28002805e3a5d4f659b4e5d.jpg","medium_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041602/6da3c27fd28002805e3a5d4f659b4e5d.jpg","large_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041602/6da3c27fd28002805e3a5d4f659b4e5d.jpg","grande_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041602/6da3c27fd28002805e3a5d4f659b4e5d.jpg","giant_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041602/6da3c27fd28002805e3a5d4f659b4e5d.jpg","position":5,"created_at":"2014-08-08T19:32:53Z","updated_at":"2015-11-09T09:56:24Z"},{"links":{"account":3837,"rental":5117},"id":5788,"description":{},"kind":null,"micro_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041605/328aab7eba713f5452c3b845c135e727.jpg","thumb_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041605/328aab7eba713f5452c3b845c135e727.jpg","small_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041605/328aab7eba713f5452c3b845c135e727.jpg","compact_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041605/328aab7eba713f5452c3b845c135e727.jpg","medium_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041605/328aab7eba713f5452c3b845c135e727.jpg","large_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041605/328aab7eba713f5452c3b845c135e727.jpg","grande_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041605/328aab7eba713f5452c3b845c135e727.jpg","giant_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041605/328aab7eba713f5452c3b845c135e727.jpg","position":6,"created_at":"2014-08-08T19:32:53Z","updated_at":"2015-11-09T09:56:28Z"},{"links":{"account":3837,"rental":5117},"id":5789,"description":{},"kind":null,"micro_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041605/f153d2fde011dabd16b5e476a382a60b.jpg","thumb_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041605/f153d2fde011dabd16b5e476a382a60b.jpg","small_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041605/f153d2fde011dabd16b5e476a382a60b.jpg","compact_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041605/f153d2fde011dabd16b5e476a382a60b.jpg","medium_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041605/f153d2fde011dabd16b5e476a382a60b.jpg","large_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041605/f153d2fde011dabd16b5e476a382a60b.jpg","grande_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041605/f153d2fde011dabd16b5e476a382a60b.jpg","giant_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041605/f153d2fde011dabd16b5e476a382a60b.jpg","position":1,"created_at":"2014-08-08T19:32:57Z","updated_at":"2015-11-09T10:02:06Z"},{"links":{"account":3837,"rental":5117},"id":5790,"description":{},"kind":null,"micro_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041607/90de19513ad2d6e97b7ad2736972c075.jpg","thumb_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041607/90de19513ad2d6e97b7ad2736972c075.jpg","small_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041607/90de19513ad2d6e97b7ad2736972c075.jpg","compact_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041607/90de19513ad2d6e97b7ad2736972c075.jpg","medium_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041607/90de19513ad2d6e97b7ad2736972c075.jpg","large_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041607/90de19513ad2d6e97b7ad2736972c075.jpg","grande_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041607/90de19513ad2d6e97b7ad2736972c075.jpg","giant_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041607/90de19513ad2d6e97b7ad2736972c075.jpg","position":7,"created_at":"2014-08-08T19:33:14Z","updated_at":"2015-11-09T09:56:28Z"},{"links":{"account":3837,"rental":5117},"id":5791,"description":{},"kind":null,"micro_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041608/08e974968c33a944431f5a82062ee5ff.jpg","thumb_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041608/08e974968c33a944431f5a82062ee5ff.jpg","small_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041608/08e974968c33a944431f5a82062ee5ff.jpg","compact_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041608/08e974968c33a944431f5a82062ee5ff.jpg","medium_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041608/08e974968c33a944431f5a82062ee5ff.jpg","large_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041608/08e974968c33a944431f5a82062ee5ff.jpg","grande_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041608/08e974968c33a944431f5a82062ee5ff.jpg","giant_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041608/08e974968c33a944431f5a82062ee5ff.jpg","position":8,"created_at":"2014-08-08T19:33:17Z","updated_at":"2015-11-09T09:56:24Z"},{"links":{"account":3837,"rental":5117},"id":5792,"description":{},"kind":null,"micro_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041609/141130620f53407878b785132457d1e1.jpg","thumb_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041609/141130620f53407878b785132457d1e1.jpg","small_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041609/141130620f53407878b785132457d1e1.jpg","compact_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041609/141130620f53407878b785132457d1e1.jpg","medium_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041609/141130620f53407878b785132457d1e1.jpg","large_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041609/141130620f53407878b785132457d1e1.jpg","grande_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041609/141130620f53407878b785132457d1e1.jpg","giant_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041609/141130620f53407878b785132457d1e1.jpg","position":9,"created_at":"2014-08-08T19:33:20Z","updated_at":"2015-11-09T09:56:28Z"},{"links":{"account":3837,"rental":5117},"id":5793,"description":{},"kind":null,"micro_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_32,q_90,w_48/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","thumb_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_64,q_90,w_96/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","small_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_128,q_90,w_192/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","compact_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_256,q_90,w_384/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","medium_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_512,q_90,w_768/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","large_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_800,q_90,w_1200/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","grande_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1024,q_90,w_1536/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","giant_url":"https://res-5.cloudinary.com/bookingsync/image/upload/c_fill,f_auto,fl_progressive,g_center,h_1600,q_90,w_2400/v1418041610/4cb2bb4f8bd14003ad3ef47867367512.jpg","position":10,"created_at":"2014-08-08T19:33:22Z","updated_at":"2015-11-09T09:56:24Z"},{"links":{"account":3837,"rental":5116},"id":311593,"description":{},"kind":"livingroom","micro_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_32,q_90,w_48/v1481034983/photo_3y4_ot4pdm.jpg","thumb_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_64,q_90,w_96/v1481034983/photo_3y4_ot4pdm.jpg","small_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_128,q_90,w_192/v1481034983/photo_3y4_ot4pdm.jpg","compact_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_256,q_90,w_384/v1481034983/photo_3y4_ot4pdm.jpg","medium_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_512,q_90,w_768/v1481034983/photo_3y4_ot4pdm.jpg","large_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_800,q_90,w_1200/v1481034983/photo_3y4_ot4pdm.jpg","grande_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1024,q_90,w_1536/v1481034983/photo_3y4_ot4pdm.jpg","giant_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1600,q_90,w_2400/v1481034983/photo_3y4_ot4pdm.jpg","position":13,"created_at":"2016-12-06T14:36:23Z","updated_at":"2016-12-06T14:36:23Z"},{"links":{"account":3837,"rental":5116},"id":311594,"description":{},"kind":"livingroom","micro_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_32,q_90,w_48/v1481034985/header-ruby-logo_3y4_t8kixo.jpg","thumb_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_64,q_90,w_96/v1481034985/header-ruby-logo_3y4_t8kixo.jpg","small_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_128,q_90,w_192/v1481034985/header-ruby-logo_3y4_t8kixo.jpg","compact_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_256,q_90,w_384/v1481034985/header-ruby-logo_3y4_t8kixo.jpg","medium_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_512,q_90,w_768/v1481034985/header-ruby-logo_3y4_t8kixo.jpg","large_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_800,q_90,w_1200/v1481034985/header-ruby-logo_3y4_t8kixo.jpg","grande_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1024,q_90,w_1536/v1481034985/header-ruby-logo_3y4_t8kixo.jpg","giant_url":"https://res-2.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1600,q_90,w_2400/v1481034985/header-ruby-logo_3y4_t8kixo.jpg","position":15,"created_at":"2016-12-06T14:36:24Z","updated_at":"2016-12-06T14:36:24Z"},{"links":{"account":3837,"rental":5116},"id":311595,"description":{"en":"Funny"},"kind":"livingroom","micro_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_32,q_90,w_48/v1481034986/photo_3y4_hbga5y.jpg","thumb_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_64,q_90,w_96/v1481034986/photo_3y4_hbga5y.jpg","small_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_128,q_90,w_192/v1481034986/photo_3y4_hbga5y.jpg","compact_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_256,q_90,w_384/v1481034986/photo_3y4_hbga5y.jpg","medium_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_512,q_90,w_768/v1481034986/photo_3y4_hbga5y.jpg","large_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_800,q_90,w_1200/v1481034986/photo_3y4_hbga5y.jpg","grande_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1024,q_90,w_1536/v1481034986/photo_3y4_hbga5y.jpg","giant_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1600,q_90,w_2400/v1481034986/photo_3y4_hbga5y.jpg","position":17,"created_at":"2016-12-06T14:36:26Z","updated_at":"2016-12-06T14:36:26Z"},{"links":{"account":3837,"rental":5116},"id":313468,"description":{},"kind":"livingroom","micro_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_32,q_90,w_48/v1481243249/photo_3y4_dod4ey.jpg","thumb_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_64,q_90,w_96/v1481243249/photo_3y4_dod4ey.jpg","small_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_128,q_90,w_192/v1481243249/photo_3y4_dod4ey.jpg","compact_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_256,q_90,w_384/v1481243249/photo_3y4_dod4ey.jpg","medium_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_512,q_90,w_768/v1481243249/photo_3y4_dod4ey.jpg","large_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_800,q_90,w_1200/v1481243249/photo_3y4_dod4ey.jpg","grande_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1024,q_90,w_1536/v1481243249/photo_3y4_dod4ey.jpg","giant_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1600,q_90,w_2400/v1481243249/photo_3y4_dod4ey.jpg","position":21,"created_at":"2016-12-09T00:27:29Z","updated_at":"2016-12-09T00:27:29Z"},{"links":{"account":3837,"rental":5116},"id":313469,"description":{},"kind":"livingroom","micro_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_32,q_90,w_48/v1481243251/header-ruby-logo_3y4_g09mmo.jpg","thumb_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_64,q_90,w_96/v1481243251/header-ruby-logo_3y4_g09mmo.jpg","small_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_128,q_90,w_192/v1481243251/header-ruby-logo_3y4_g09mmo.jpg","compact_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_256,q_90,w_384/v1481243251/header-ruby-logo_3y4_g09mmo.jpg","medium_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_512,q_90,w_768/v1481243251/header-ruby-logo_3y4_g09mmo.jpg","large_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_800,q_90,w_1200/v1481243251/header-ruby-logo_3y4_g09mmo.jpg","grande_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1024,q_90,w_1536/v1481243251/header-ruby-logo_3y4_g09mmo.jpg","giant_url":"https://res-3.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1600,q_90,w_2400/v1481243251/header-ruby-logo_3y4_g09mmo.jpg","position":23,"created_at":"2016-12-09T00:27:30Z","updated_at":"2016-12-09T00:27:30Z"},{"links":{"account":3837,"rental":5116},"id":313470,"description":{"en":"Funny"},"kind":"livingroom","micro_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_32,q_90,w_48/v1481243252/photo_3y4_fedksd.jpg","thumb_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_64,q_90,w_96/v1481243252/photo_3y4_fedksd.jpg","small_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_128,q_90,w_192/v1481243252/photo_3y4_fedksd.jpg","compact_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_256,q_90,w_384/v1481243252/photo_3y4_fedksd.jpg","medium_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_512,q_90,w_768/v1481243252/photo_3y4_fedksd.jpg","large_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_800,q_90,w_1200/v1481243252/photo_3y4_fedksd.jpg","grande_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1024,q_90,w_1536/v1481243252/photo_3y4_fedksd.jpg","giant_url":"https://res-4.cloudinary.com/bookingsync/image/upload/c_fit,f_auto,fl_progressive,h_1600,q_90,w_2400/v1481243252/photo_3y4_fedksd.jpg","position":25,"created_at":"2016-12-09T00:27:32Z","updated_at":"2016-12-09T00:27:32Z"}],"meta":{}}'
86
+ http_version:
87
+ recorded_at: Mon, 12 Dec 2016 11:32:45 GMT
88
+ recorded_with: VCR 3.0.3
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: put
5
- uri: http://bookingsync.dev/api/v3/preferences_general_settings/1
5
+ uri: https://www.bookingsync.com/api/v3/preferences_general_settings/3780
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"preferences_general_settings":[{"selected_locales":["de"]}]}'
9
9
  headers:
10
10
  User-Agent:
11
- - BookingSync API gem v0.0.34
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,11 +17,19 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
23
27
  message: OK
24
28
  headers:
29
+ Server:
30
+ - nginx
31
+ Date:
32
+ - Mon, 12 Dec 2016 12:04:34 GMT
25
33
  Content-Type:
26
34
  - application/vnd.api+json; charset=utf-8
27
35
  Transfer-Encoding:
@@ -30,45 +38,42 @@ http_interactions:
30
38
  - keep-alive
31
39
  Status:
32
40
  - 200 OK
33
- Cache-Control:
34
- - max-age=0, private, must-revalidate
41
+ X-Frame-Options:
42
+ - SAMEORIGIN
43
+ X-Xss-Protection:
44
+ - 1; mode=block
45
+ X-Content-Type-Options:
46
+ - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 12:04:34 UTC
35
49
  X-Ratelimit-Limit:
36
- - '999999999'
50
+ - '1000'
37
51
  X-Ratelimit-Reset:
38
- - '1456401600'
52
+ - '1481547600'
39
53
  X-Ratelimit-Remaining:
40
- - '999999993'
41
- X-Xss-Protection:
42
- - 1; mode=block
43
- X-Request-Id:
44
- - 90077382-397e-4c33-be05-0ffa2cf5b3f9
54
+ - '987'
55
+ Etag:
56
+ - W/"eb9b51d1eb284526d670fd22614cfea4"
57
+ Cache-Control:
58
+ - max-age=0, private, must-revalidate
45
59
  P3p:
46
60
  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
47
61
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
48
- Etag:
49
- - '"e3db2f1a78163e38b740d0d4c8a3a9c5"'
50
- X-Frame-Options:
51
- - SAMEORIGIN
52
- X-Runtime:
53
- - '0.029907'
54
- X-Content-Type-Options:
55
- - nosniff
56
- Date:
57
- - Thu, 25 Feb 2016 11:24:20 GMT
58
62
  Set-Cookie:
59
- - ahoy_track=true; path=/
60
- - ahoy_visit=150f64bd-d424-464d-8ead-e3365016c17e; path=/; expires=Thu, 03 Mar
61
- 2016 11:24:20 -0000
62
- - ahoy_visitor=3be0895b-31a9-4663-96ae-52b2bd833103; path=/; expires=Sun, 25
63
- Feb 2018 11:24:20 -0000
64
- X-Powered-By:
65
- - Phusion Passenger 5.0.22
66
- Server:
67
- - nginx/1.8.0 + Phusion Passenger 5.0.22
63
+ - ahoy_track=true; path=/; secure
64
+ - ahoy_visit=b273d6e0-1738-41b7-b1ae-f2ca3decd8f3; path=/; expires=Mon, 19 Dec
65
+ 2016 12:04:34 -0000; secure
66
+ - ahoy_visitor=0b4c4847-afd7-496f-b90c-4f8930b5469a; path=/; expires=Wed, 12
67
+ Dec 2018 12:04:34 -0000; secure
68
+ X-Request-Id:
69
+ - e35e7507-b7d0-4f44-b6bf-32109975ff39
70
+ X-Runtime:
71
+ - '0.039629'
72
+ Strict-Transport-Security:
73
+ - max-age=31536000
68
74
  body:
69
75
  encoding: UTF-8
70
- string: '{"links":{"preferences_general_settings.account":"http://bookingsync.dev/api/v3/accounts/{preferences_general_settings.account}"},"preferences_general_settings":[{"links":{"account":1},"id":1,"email":"demo_en@bookingsync.com","default_arrival_time":16,"default_departure_time":10,"selected_locales":["en","de"],"business_name":"Your
71
- Business Name","website":"","phone":"","mobile":"","fax":"","address1":"","address2":"","city":"","state":"","zip":"","country":null,"full_address":""}]}'
76
+ string: '{"links":{"preferences_general_settings.account":"https://www.bookingsync.com/api/v3/accounts/{preferences_general_settings.account}"},"preferences_general_settings":[{"links":{"account":3837},"id":3780,"email":"dev@bookingsync.com","default_arrival_time":16,"default_departure_time":10,"selected_locales":["en","fr","de"],"business_name":"BSA-Website-Test","website":"","phone":"","mobile":"","fax":"","address1":"","address2":"","city":"","state":"","zip":"","country":null,"country_code":"","full_address":"","default_communication_locale":"en"}]}'
72
77
  http_version:
73
- recorded_at: Thu, 25 Feb 2016 11:24:20 GMT
74
- recorded_with: VCR 2.9.2
78
+ recorded_at: Mon, 12 Dec 2016 12:04:34 GMT
79
+ recorded_with: VCR 3.0.3