Create a new damage survey for a vehicle claim. The survey records the vehicle’s condition at intake — its make, model, identification details, which systems are damaged, and any additional notes. Once created, itemized repair cost concepts can be attached via the Conceptos endpoints.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sheeplettuce/Monitor/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Administrador, Operador, Tecnico) may create levantamientos.
Request Body
The claim number this survey belongs to. Must match the
no_siniestro of an existing expediente. If no matching expediente is found, the request returns a 400 error.Date the survey was conducted. Accepts two formats:
- ISO format:
"2024-01-15"or"2024-01-15T12:00:00Z" - Mexican locale format:
"15/01/2024"
Date. If omitted, the field is left null.Internal work order number associated with this survey.
Vehicle make, e.g.
"Toyota", "Nissan".Vehicle body type, e.g.
"Sedán", "SUV", "Pick-up".Vehicle model name, e.g.
"Corolla", "Sentra".License plate number.
Odometer reading at the time of the survey, e.g.
"84500".Number of doors, e.g.
"4" or "2".Vehicle color.
Vehicle identification number (VIN / número de serie).
Internal economic number assigned to the vehicle in the shop.
Whether the claim covers the policy holder or a third party. Common values:
"Asegurado", "Tercero".Full name of the vehicle owner.
Contact phone number of the vehicle owner.
Address of the vehicle owner.
Auxiliary sticker or label reference field.
Set to
true if the glass or windshield is damaged.Set to
true if the air conditioning system is damaged.Set to
true if the upholstery is damaged.Set to
true if one or more wheel rims are damaged.Set to
true if the steering system is damaged.Paint type or paint damage flag.
Set to
true if the transmission is damaged.An optional array of cost concept objects to create together with the levantamiento in a single request. Each object may contain:
concepto(string) — description of the repair item.costo(number) — unit cost as a decimal, e.g.3500.00.claves(string) — optional item code or SKU.
Request Example
Response
201 — Created
Returns the newly created levantamiento object, including the (initially empty)levantamiento_concepto array.
Error Responses
| Status | Body | Description |
|---|---|---|
400 | { "error": "no_siniestro es requerido" } | The no_siniestro field was missing from the request body. |
400 | { "error": "No existe un expediente con ese no_siniestro" } | The provided no_siniestro does not match any existing expediente. |
401 | — | Missing or invalid Authorization header. |