Skip to main content

ReconciledRow

Details about a single reconciled row.

type ReconciledRow {
id: Int!
productId: String!
requestedQuantity: Int!
availableQuantity: Int!
status: ReconcileStatus!
details: InventoryErrorDetails
}

Fields

id ● Int!

The id of the row

productId ● String!

The product ID of the reconciled row.

requestedQuantity ● Int!

Quantity requested.

availableQuantity ● Int!

Quantity available.

status ● ReconcileStatus!

The status of the row

details ● InventoryErrorDetails

Optional structured details about the error. Null if status is OK.

Example

{
"details": {}
}