list_products
Retrieve and filter product data from ShipBob's e-commerce fulfillment API using pagination and search terms for efficient product management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of products per page | |
page | No | Page number for pagination | |
search | No | Search term to filter products |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Number of products per page",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"search": {
"description": "Search term to filter products",
"type": "string"
}
},
"type": "object"
}