Mobypark API Docs
Home
Home
  1. Account
  • Auth
    • Account
      • /profile
        GET
      • /logout
        POST
      • /profile
        PUT
    • 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
      • /vehicles/{license_plate}/entry
      • /vehicles
      • /vehicles/{vehicle_id}/history
      • /vehicles/{vehicle_id}/reservations
      • /vehicles/{license_id} (ADMIN)
      • /vehicles/{vehicle_id}
      • /vehicles/{username}
    • 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. Account

/profile

GET
/profile
Geeft alle gegevens van de ingelogde user

Request

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

Responses

🟢200OK
application/json
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/profile' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Success
{
    "id": "8598",
    "username": "rob1979",
    "password": "fb8fb5fddc7dc97f5cbee80f2052ec56",
    "name": "Rob van Wijk",
    "email": "rob1979@telfort.nl",
    "phone": "+310507102786",
    "role": "USER",
    "created_at": "2025-11-03",
    "birth_year": 1979,
    "active": true
}
Modified at 2025-10-06 12:57:39
Next
/logout
Built with