Mobypark API Docs
Home
Home
  1. Vehicles
  • Auth
    • Account
      • /profile
      • /logout
      • /profile
    • Parking Lots
      • /parking-lots
      • /parking-lots/{parking-lot_id}/sessions/start
      • /parking-lots/{parking-lot_id}/sessions/stop
      • /parking-lots
      • /parking-lots/{parkinglot_id}
      • /parking-lots/{parkinglot_id}/sessions
      • /parking-lots/{parkinglot_id}/sessions/{parking_session_id}
      • /parking-lots/{parkinglot_id} (ADMIN)
      • /parking-lots/{parkinglot_id}/sessions/{parking_session_id} (ADMIN)
      • /parking-lots/{parkinglot_id} (ADMIN)
    • Payments/Billing
      • /payments
      • /payments/refund
      • /billing
      • /billing/{username} (ADMIN)
      • /payments
      • /payments/{username} (ADMIN)
      • /payments/{transaction_id}
    • Vehicles
      • /vehicles
        POST
      • /vehicles/{license_plate}/entry
        POST
      • /vehicles
        GET
      • /vehicles/{vehicle_id}/history
        GET
      • /vehicles/{vehicle_id}/reservations
        GET
      • /vehicles/{license_id} (ADMIN)
        DELETE
      • /vehicles/{vehicle_id}
        PUT
      • /vehicles/{username}
        GET
    • Reservations
      • /reservations (USER)
      • /reservations (ADMIN)
      • /reservations/{reservation_id}
      • /reservations/{reservation_id}
      • /reservations/{reservation_id}
  • NoAuth
    • Account
      • /login
      • /register
  • Schemas
    • Billing Object
    • Parkinglot Object
    • Parking Session Object
    • Payment Object
    • Reservation Object
    • Vehicle Object
  1. Vehicles

/vehicles/{vehicle_id}/reservations

GET
/vehicles/{vehicle_id}/reservations

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params

Responses

🟢200Success
application/json
Body

🟠403Access Denied
🟠404Not found
🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/vehicles//reservations' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Example 1
[
    {
        "id": "string",
        "user_id": "string",
        "parking_lot_id": "string",
        "vehicle_id": "string",
        "start_time": "string",
        "end_time": "string",
        "status": "string",
        "created_at": "string",
        "cost": 0
    }
]
Modified at 2025-10-16 12:07:23
Previous
/vehicles/{vehicle_id}/history
Next
/vehicles/{license_id} (ADMIN)
Built with