BikeSharing API - don-philipe/Praktikum-SOA GitHub Wiki

Endpoints

Name Method URL Access
[Alle verfügbaren Fahrradstationen](Get stations) GET /stations public
[Spezielle Station](Get station) GET /stations/stationId public
[Alle verfügbaren Fahrräder](Get bikes) GET /bikes public
[Spezielles Fahrrad](Get bike) GET /bikes/bikeId public
[Alle Fahrradmodelle](Get bike models) GET /models public
[Spezielles Fahrradmodell](Get bike model) GET /models/modelId public
[Alle Buchungen](Get bookings) GET /bookings protected
[Buchung erstellen](Create booking) POST /bookings protected
[Einzelne Buchung](Get booking) GET /bookings/bookingId protected
[Einzelne Buchung stornieren](Delete booking) DELETE /bookings/bookingId protected
[Einzelne Buchung bearbeiten](Edit booking) PUT /bookings/bookingId protected
[Accountinformationen](Get account informations) GET /account protected