Gestionar ofertas y contratos
Busqueda objetivo: "gestionar ofertas transporte api", "contratos carga api"
Ofertas recibidas
bash
curl -X GET "https://api.pro.cargoffer.com/api/auction/bids/{serviceCode}" \
-H "Authorization: Bearer <token>"Contrato
bash
curl -X GET "https://api.pro.cargoffer.com/api/auction/contract/{serviceCode}" \
-H "Authorization: Bearer <token>"Favoritos
bash
# Anadir a favoritos
curl -X POST "https://api.pro.cargoffer.com/api/auction/favorites" \
-H "Authorization: Bearer <token> \
-H "Content-Type: application/json" \
-d '{"auctionId": "{serviceCode}"}'
# Listar favoritos
curl -X GET "https://api.pro.cargoffer.com/api/auction/favorites" \
-H "Authorization: Bearer <token>"