get_inventory_report
Retrieve detailed inventory reports from ShipBob API by specifying start and end dates, and optionally filter data by fulfillment center ID for efficient inventory management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | Yes | End date for the report (YYYY-MM-DD) | |
fulfillmentCenterId | No | Filter by fulfillment center ID | |
startDate | Yes | Start date for the report (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"endDate": {
"description": "End date for the report (YYYY-MM-DD)",
"type": "string"
},
"fulfillmentCenterId": {
"description": "Filter by fulfillment center ID",
"type": "string"
},
"startDate": {
"description": "Start date for the report (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"startDate",
"endDate"
],
"type": "object"
}