Skip to main content
An object representing an exception that occurred during order processing.
type OrderingOrderException {
  createdAt: String!
  sku: String
  message: String!
  category: String
}

createdAt

string - The timestamp when the exception occurred in ISO 8601 format.

sku

string | null - The SKU associated with the exception, if applicable. Note that this may be a distributor SKU that doesn’t exist in the SIBI system. Will be null when not available or not applicable.

message

string - A description of the exception that occurred.

category

string | null - The category of the exception. Category will be null for now. As we add new categories we will update this documentation.
I