listProducts
Retrieve a paginated list of products from the Omnisend catalog, enabling users to manage and access product data efficiently using limit and offset parameters.
Instructions
Retrieve a list of products from the Omnisend catalog with pagination support.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of products to return | |
offset | No | Skip first N results |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of products to return",
"type": "number"
},
"offset": {
"description": "Skip first N results",
"type": "number"
}
},
"type": "object"
}