Como hacer seguimiento de las entregas
Lo que vas a conseguir
Saber en todo momento donde esta tu carga, comunicarte con el conductor y confirmar la entrega digitalmente.
El orden
Ver activas → Detalle → Mensajes → QR entrega → DocumentosPaso 1: Ver entregas activas
Documentacion: docs.cargoffer.com/#tag/Delivery
bash
curl -X GET "https://api.pro.cargoffer.com/api/delivery/active" \
-H "Authorization: Bearer *** Detalle de una entrega
```bash
curl -X GET "https://api.pro.cargoffer.com/api/company/deliveries/{serviceCode}" \
-H "Authorization: Bearer *** Mensajes con el conductor
```bash
curl -X POST "https://api.pro.cargoffer.com/api/company/deliveries/msg/{id}" \
-H "Authorization: Bearer *** \
-H "Content-Type: application/json" \
-d '{"message": "Confirmas entrega a las 15:00?"}'Paso 4: Confirmar con QR
Documentacion: docs.cargoffer.com/#tag/QR-Delivery
bash
curl -X PUT "https://api.pro.cargoffer.com/api/company/qr/confirm" \
-H "Authorization: Bearer *** -H "Content-Type: application/json" \
-d '{"token": "qr_token_recibido", "service_code": "SRV-2026-001"}'Paso 5: Descargar documentacion
bash
curl -X GET "https://api.pro.cargoffer.com/api/delivery/download/{serviceCode}" \
-H "Authorization: Bearer *** Enviar CMR digital
```bash
curl -X POST "https://api.pro.cargoffer.com/api/company/cmr/send" \
-H "Authorization: Bearer *** -H "Content-Type: application/json" \
-d '{"service_code": "SRV-2026-001"}'