experiment-list
Retrieve a paginated list of A/B test experiments with search functionality to filter by name, description, or experiment key, enabling streamlined data access and analysis.
Instructions
Fetches a paginated list of A/B test experiments with search functionality.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageNumber | No | ||
pageSize | No | ||
searchKeyword | No | name, description, or experimentKey of an experiment. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageNumber": {
"default": 1,
"type": "number"
},
"pageSize": {
"default": 100,
"type": "number"
},
"searchKeyword": {
"description": "name, description, or experimentKey of an experiment.",
"type": "string"
}
},
"type": "object"
}