in-app-message-list
Retrieve a paginated list of in-app messages with search functionality to locate messages by name, description, or campaign key, enabling efficient management of A/B test messages.
Instructions
Fetches a paginated list of in-app messages with search functionality.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageNumber | No | ||
pageSize | No | ||
searchKeyword | No | name, description, or campaignKey of an in-app message. |
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 campaignKey of an in-app message.",
"type": "string"
}
},
"type": "object"
}