Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 1.82 KB

File metadata and controls

34 lines (20 loc) · 1.82 KB

Voucherify.OrdersUpdateRequestBody

Properties

Name Type Description Notes
sourceId String Unique source ID of an existing order that will be linked to the redemption of this request. [optional]
status String The order status. [optional]
amount Number A positive integer in the smallest currency unit (e.g. 100 cents for $1.00) representing the total amount of the order. This is the sum of the order items' amounts. [optional]
initialAmount Number A positive integer in the smallest currency unit (e.g. 100 cents for $1.00) representing the total amount of the order. This is the sum of the order items' amounts. [optional]
discountAmount Number Sum of all order-level discounts applied to the order. It is expressed as an integer in the smallest currency unit (e.g. 100 cents for $1.00). [optional]
items [OrderItem] Array of items applied to the order. It can include up to 500 items. [optional]
metadata Object A set of custom key/value pairs that you can attach to an order. It can be useful for storing additional information about the order in a structured format. It can be used to define business validation rules or discount formulas. [optional]
createdAt Date Timestamp representing the date and time when the order was created. The value is shown in the ISO 8601 format. [optional]
referrerId String Unique referrer ID. [optional]
customer Customer [optional]
referrer Referrer [optional]

Enum: StatusEnum

  • CREATED (value: "CREATED")

  • PAID (value: "PAID")

  • CANCELED (value: "CANCELED")

  • FULFILLED (value: "FULFILLED")