Test endpoint for entry/exit notification
POST/vehicles/notification/test
Forces an entry or exit webhook notification to test partner integrations.
This endpoint is only available in the pre-production environment.
The webhook payload sent to the configured partner endpoint uses the same booking object format returned by GET /bookings.
The webhook body sent to the partner endpoint is always an array of booking objects, even when only one event is sent.
For entry notifications, duration and final pricing fields may be null because the parking session has just started.
For exit notifications, duration and pricing fields are included when available because the parking session has finished.
Important: The partner endpoint must implement idempotency. Webhooks may occasionally be delivered more than once, so your system should handle duplicate notifications gracefully without unintended side effects.
Example webhook payload sent to the partner endpoint:
[
{
"uid": "abc123",
"timestamp": "2026-05-28T10:00:00+02:00",
"lmppid": "provider-123",
"parking_name": "Parking Example",
"address": "Example Street 1, Madrid",
"lat": 40.4235049,
"long": -3.6894324,
"start": "2026-05-28T08:00:00+02:00",
"duration": 117,
"user_uid": "user_uid",
"number_plate": "1234ABC",
"car_brand": "brand",
"car_model": "model",
"actual_price": 4.4,
"commission_percent": 0.1,
"commission_price": 0.4,
"lmp_price": 4,
"booking_ref": "provider-booking-ref",
"support_phone": "+34658206038",
"support_email": "support@letmepark.app",
"cancel_mn": 120,
"cancelled": false,
"cancelled_date": null
}
]
Request
Header Parameters
Authentication header obtained from POST /authenticate that identifies the user making this call.
Authentication header obtained from LMP Team that identifies the client making this call.
Authentication header obtained from LMP Team that identifies the user making this call.
- application/json
Body
required
parameters required to build the notification
Action to build notification. 'EXIT' or 'ENTRY
Provider of the offer
number plate of the vehicle
lmpPID of the offer
Responses
- 200
- 401
- 500
OK. The test webhook notification was sent to the configured partner endpoint.
Unauthorized (ie. Incorrect or missing x-access-token)
Internal server Error (ie. Database down)