putOrders

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

  • orders Array<Object>
  • orderId String
  • orderSerialNumber Integer
  • orderStatus String
  • apiFlag 'none'|'registered'|'realized'|'registered_pos'|'realized_pos'|'registration_fault'
  • apiNoteToOrder String
  • clientNoteToOrder String
  • clientNoteToCourier String
  • orderNote String
  • products Array<Object>
  • orderPaymentType 'cash_on_delivery'|'prepaid'|'tradecredit'
  • orderSettledAtPrice 'gross'|'net'|'net_without_VAT'
  • ignoreBridge Boolean
  • settings Object
  • emailProcessingConsent 'yes'|'no'|'disabled'
  • clientRequestInvoice String
  • billingCurrency String
  • billingCurrencyRate Number
  • purchaseDate String
  • estimatedDeliveryDate String
Examples

This function assigns a serial number of 9 to a specific order and adds a note with the message "testmessage".

const result = await idosellRequest.putOrders
	.orderSerialNumber(9)
	.orderNote("testmessage")
	.exec()