putOrdersShippingCosts

Operation Id:
orders/shippingCosts/put [Official Documentaction]
Methods

  • orderSerialNumber Integer
  • deliveryCost Number
  • orderDeliveryVat Number
Examples

This function calculates the total shipping cost including VAT for an order with a given serial number and delivery cost.

const result = await idosellRequest.putOrdersShippingCosts
	.orderSerialNumber(3)
	.deliveryCost(10)
	.orderDeliveryVat(23)
	.exec()