Velo voucher
The vouchers can be redeemed at various Rent a Bike hire stations, allowing recipients to choose from great tour suggestions in all regions of Switzerland.
Bike vouchers valid until 31.10.2029
To redeem the voucher, book the right bike in advance online at www.rentabike.ch/reservation and enter the voucher number directly when making the reservation. Alternatively, you can bring the voucher with you and we will redeem it on site.
CHF 48.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);
}
}
}
}
});