E-Bike City voucher
The vouchers can be redeemed at all Rent a Bike hire stations, allowing recipients to choose from great tour suggestions in all regions of Switzerland.
E-Bike City vouchers valid until 31.10.2029
To redeem the voucher, book the right e-bike in advance online at www.rentabike.ch/reservation and bring the voucher with you.
CHF 70.00
0
>
$(function(){
// update voucher quantities in view
if (typeof localStorage["rentabike_cart"] !== "undefined") {
let stCart = JSON.parse(localStorage["rentabike_cart"]);
if (stCart.hasOwnProperty("vouchers")) {
for (object_id in stCart.vouchers) {
if (stCart.vouchers[object_id].quantity > 0) {
$('.cvouchers__quantity[data-objectid="' + object_id + '"]').text(stCart.vouchers[object_id].quantity);
}
}
}
}
});