get_stock_adjustment
Retrieve detailed information about specific inventory stock adjustments including related entities to track and analyze inventory changes.
Instructions
Get details of a specific stock adjustment
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| include | No | Related entities to include | |
| stockAdjustmentId | Yes | The stock adjustment ID |
Input Schema (JSON Schema)
{
"properties": {
"include": {
"description": "Related entities to include",
"type": "string"
},
"stockAdjustmentId": {
"description": "The stock adjustment ID",
"type": "string"
}
},
"required": [
"stockAdjustmentId"
],
"type": "object"
}