> For the complete documentation index, see [llms.txt](https://developers.admintotal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.admintotal.com/api/vehiculos-entrega.md).

# Vehículos Entrega

## Obtener listado de Vehículos de Entrega

<mark style="color:blue;">`GET`</mark> `https://{clave}.admintotal.com/api/v2/vehiculos_entrega/:id/`

#### Headers

| Name    | Type   | Description            |
| ------- | ------ | ---------------------- |
| Api-key | String | Token de autenticación |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "count": 9,
    "next": "https://{clave}.admintotal.com/api/v2/vehiculos_entrega/",
    "previous": null,
    "results": [
        {
            "id": 2,
            "activo": true,
            "asegurado": false,
            "matricula": "vwx-121",
            "carga_maxima_kg": 10,
            "comentarios": "Motocicleta Honda 250 modelo 2018",
            "creado": "2019-10-10T13:08:54.025703-07:00",
            "modificado": "2020-06-13T11:53:38.062226-07:00",
            "alias": null,
            "numero_serie": "46565465",
            "kilometraje": 66666
        }
    ]
}
```

{% endtab %}
{% endtabs %}

## Obtener un Vehículo de Entrega

<mark style="color:blue;">`GET`</mark> `https://{clave}.admintotal.com/api/v2/vehiculos_entrega/:id/`

#### Headers

| Name    | Type   | Description            |
| ------- | ------ | ---------------------- |
| Api-key | String | Token de autenticación |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "count": 9,
    "next": "https://{clave}.admintotal.com/api/v2/vehiculos_entrega/",
    "previous": null,
    "results": [
        {
            "id": 2,
            "activo": true,
            "asegurado": false,
            "matricula": "vwx-121",
            "carga_maxima_kg": 10,
            "comentarios": "Motocicleta Honda 250 modelo 2018",
            "creado": "2019-10-10T13:08:54.025703-07:00",
            "modificado": "2020-06-13T11:53:38.062226-07:00",
            "alias": null,
            "numero_serie": "46565465",
            "kilometraje": 66666
        }
    ]
}
```

{% endtab %}
{% endtabs %}
