The operator can upload a custom barcode to appear on the vouchers. See supported Barcodes
Last updated 1 year ago
The parking uuid
The booking code
The request has been successful
The vehicle uuid
Submit a barcode
const response = await fetch('/v1/parkings/{parking}/bookings/{booking}/vehicles', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/v1/parkings/{parking}/bookings/{booking}/vehicles/{vehicle}', { method: 'PATCH', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "barcode_type": "text", "barcode_value": "text" }), }); const data = await response.json();