Skip to main content

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

    x-access-token string

    Authentication header obtained from POST /authenticate that identifies the user making this call.

    Example: NgDvLMpPq.6AgfCvkP.YEWA3ZX
    x-api-user string

    Authentication header obtained from LMP Team that identifies the client making this call.

    Example: AbC123DeF456GhI789JkL012
    x-api-key string

    Authentication header obtained from LMP Team that identifies the user making this call.

    Example: XyZ456AbC789DeF012GhI345

Body

required

parameters required to build the notification

    action stringrequired

    Action to build notification. 'EXIT' or 'ENTRY

    provider stringrequired

    Provider of the offer

    plate string

    number plate of the vehicle

    lmpPID string

    lmpPID of the offer

Responses

OK. The test webhook notification was sent to the configured partner endpoint.

Loading...