get_all_products
Retrieve a comprehensive list of products from Freshservice, including details like page number and items per page for efficient data management.
Instructions
List all the products from Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
per_page | No |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Page"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 30,
"title": "Per Page"
}
},
"title": "get_all_productsArguments",
"type": "object"
}