gabrielbull / php-ups-api

PHP Wrapper for all UPS API
MIT License
456 stars 255 forks source link

is COD possbile ? #257

Closed mmartipn closed 5 years ago

mmartipn commented 5 years ago

couldn't find anything in documentation about it... is it possible to send something and add COD (in Germany: Nachnahme) ?

mmartipn commented 5 years ago

found it.

$shipmentServiceOptions = new \Ups\Entity\ShipmentServiceOptions; $cod = new \Ups\Entity\COD; $cod->CODAmount->setCurrencyCode('EUR'); $cod->CODAmount->setMonetaryValue(konformNr($value)); $cod->setCODCode(3); $cod->setCODFundsCode(1); $shipmentServiceOptions->setCOD($cod); $shipment->setShipmentServiceOptions($shipmentServiceOptions);

...

$accept->CODTurnInPage->Image->GraphicImage