Get Inventory Item
Perform Get Inventory Item through Bonafide.
bonafide_get_inventory_itemreadbonafide
Inputs
- Sku
skuexpressionrequiredRequired literal value or workflow expression.
- Office
officeexpressionrequiredRequired literal value or workflow expression.
Outputs
successSuccessitemItemmessageMessageerrorErrorerror_messageError Message
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"sku",
"office"
],
"properties": {
"sku": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"office": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"item": {},
"error": {},
"message": {},
"success": {},
"error_message": {}
},
"additionalProperties": true
}