Webhooks — Vehicle Collateral
API under development
The API is still in development phase, therefore, this manual is subject to changes.
Asynchronous notifications sent via POST by QI Tech to report status changes in the collateral (lien), contract, and debt lifecycle. The request must be answered within 5 seconds with HTTP 200.
Debt Webhooks
This section covers both vehicle collateral webhooks and standard debt webhooks. For the complete documentation of all debt-related webhooks, see: Debt Webhooks.
Vehicle Collateral Webhooks — Reservation (SNG/B3)
WEBHOOK TYPE
laas.vehicle_collateral.reservation_status_changeNotifications related to lien registration at SNG/B3.
Base Webhook Structure
{
"key": "<UUID v4 — unique webhook identifier>",
"reservation_key": "<UUID — unique reservation identifier>",
"credit_operation_key": "<UUID — credit operation identifier>",
"status": "<status enumerator>",
"webhook_type": "laas.vehicle_collateral.reservation_status_change",
"event_datetime": "<ISO 8601 timestamp>",
"data": {
"contract_number": "<contract number>",
"...": "<status-specific fields>"
}
}
Base Fields
| Field | Type | Description |
|---|---|---|
| key | String | Unique webhook identifier (UUID v4) |
| reservation_key | String | Unique reservation identifier (UUID) |
| credit_operation_key | String | Credit operation identifier (UUID) |
| status | String | Status enumerator (see Status Map) |
| webhook_type | String | Always laas.vehicle_collateral.reservation_status_change |
| event_datetime | String | Event timestamp (ISO 8601) |
| data | Object | Status-specific payload (see examples below) |
pending_reservation_confirmation
Collateral is being processed. Data has been sent to SNG/B3 and the system awaits confirmation.
Payload
{
"key": "1f975b68-7895-4c72-9d79-e73c7b0986b0",
"reservation_key": "e73c7b68-4c72-9d79-7895-1f975b0986b0",
"credit_operation_key": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"status": "pending_reservation_confirmation",
"webhook_type": "laas.vehicle_collateral.reservation_status_change",
"event_datetime": "2026-03-10T10:05:00Z",
"data": {
"contract_number": "123insd"
}
}
reserved
Collateral successfully reserved at SNG/B3. Lien is registered and the operation is ready for the next stage.
Payload
{
"key": "1f975b68-7895-4c72-9d79-e73c7b0986b0",
"reservation_key": "e73c7b68-4c72-9d79-7895-1f975b0986b0",
"credit_operation_key": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"status": "reserved",
"webhook_type": "laas.vehicle_collateral.reservation_status_change",
"event_datetime": "2026-03-10T10:10:00Z",
"data": {
"contract_number": "123insd",
"collateral_number": "00123456",
"reservation_date": "2026-03-10"
}
}