list_inventory_movements
Track and manage inventory movements by filtering data based on product ID, warehouse ID, creation date, and pagination. Enhances inventory control and visibility with ShipHero MCP Server.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| created_after | No | Filter by creation date (YYYY-MM-DD) | |
| limit | No | Number of results per page | |
| page | No | Page number for pagination | |
| product_id | No | Filter by product ID | |
| warehouse_id | No | Filter by warehouse ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"created_after": {
"description": "Filter by creation date (YYYY-MM-DD)",
"type": "string"
},
"limit": {
"description": "Number of results per page",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"product_id": {
"description": "Filter by product ID",
"type": "string"
},
"warehouse_id": {
"description": "Filter by warehouse ID",
"type": "string"
}
},
"type": "object"
}