Orders
Order Data
Attributes on the order payload body for events with the topics order.created
and order.updated
id
The unique identifier for the order.
poNumber
Purchase order number associated with this order. Defined by the person that placed the order. Is null
when not available.
viewUrl
A URL to view the order in the Sibi Web UI.
createdAt
The timestamp when the order was created in ISO 8601 format.
propertyAddress
The property address associated with this order. Broken down into separate string fields line1
, line2
, city
, stateOrProvince
, postalCode
. If the address doesn’t have a line2
, it will return a value of null
.
fulfillmentMethod
How the order will be fulfilled. Will be one of PICKUP
or DELIVERY
.
requestedFulfillmentDate
The date when the order is requested to be fulfilled in ISO 8601 format.
estimatedFulfillmentDate
The estimated fulfillment date for the order in ISO 8601 format. Will return the fulfillment date from the distributor if available, falls back to the requestedFulfillmentDate
.
status
The current status of the order.
taxCents
The tax amount for this order, represented in cents.
totalCents
The total cost of the order, represented in cents.
lineItems
A list of items included in the invoice.
lineItems.sku
The stock-keeping unit (SKU) identifier for the item.
lineItems.name
The human readable name of the product.
lineItems.quantity
The number of units purchased for this item.
lineItems.unitOfMeasure
The unit of measurement for this item (e.g., EA for each).
lineItems.unitPriceCents
The price per unit of the item, represented in cents.
lineItems.totalPriceCents
The total price for the line item, accounting for the quantity and unit price, represented in cents.