Prompts
Manage monitoring prompts and bulk operations
Prompts are the questions sent to AI platforms to monitor your brand's visibility.
List Prompts
GET /properties/:id/promptsReturns all prompts for a property with pagination support.
Query parameters
| Param | Type | Default | Description |
|---|---|---|---|
page | number | 1 | Page number |
limit | number | 50 | Items per page |
status | string | all | Filter by status: tracked, rejected, pending |
Create Prompt
POST /properties/:id/promptsAdd a new monitoring prompt to a property.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
text | string | Yes | The prompt text to monitor |
category | string | No | Intent category (informational, transactional, comparison) |
Bulk Operations
POST /properties/:id/prompts/bulkPerform bulk operations on prompts — track, reject, or delete multiple prompts at once.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
action | string | Yes | track, reject, or delete |
promptIds | string[] | Yes | Array of prompt IDs to act on |