Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 1.98 KB

OrderCreate.md

File metadata and controls

21 lines (17 loc) · 1.98 KB

MissionControl.OrderCreate

Properties

Name Type Description Notes
references [String] The the first reference of this order is generated by the system that created it. The references are supposed to be used in customer/human related communication. It is not a technical ID. [optional]
currency String The currency used for all monetary information of this order, including all line items. Currencies cannot be mixed within the same order. [optional]
netTotal Number The total net worth (that is without taxes) of the order in the smallest unit of `currency`. For USD/EUR this would be cents, for GPB pence, etc. [optional]
grossTotal Number The total gross worth (that is with taxes) of the order in the smallest unit of `currency`. For USD/EUR this would be cents, for GPB pence, etc. [optional]
taxes Number The total amount of taxes of the order in the smallest unit of `currency`. For USD/EUR this would be cents, for GPB pence, etc. [optional]
confirmedAt Date The date at which this order was confirmed to be produced. When this date is set, the order `state` will be set to confirmed and no modifications of this order will be possible. [optional]
canceledAt Date The date at which this order was canceled. Only orders that were previously confirmed might be canceled. When this date is set, the order `state` will equal `canceled`. [optional]
fulfilledAt Date The date at which this order was complelty fulfilled. Fulfillment is assumed as soon as all production and logistics work is completed and the order is on it's way to the customer. When this date is set, the order `state` will equal `fulfilled`. [optional]

Enum: CurrencyEnum

  • USD (value: "USD")
  • EUR (value: "EUR")
  • GBP (value: "GBP")