Mangools/API

Add prompts to a monitor

Add one or more new prompts to an existing monitor.

Request body:

  • prompts — non-empty array of prompt strings to add

The monitor starts collecting responses for the new prompts across its configured AI models on the next scheduled run. The response returns added_count.

POST
/v3/aiwatcher/monitor/{id}/prompts

Authorization

ApiKeyAuth
x-access-token<token>

Your Mangools API key

In: header

Path Parameters

id*string

Monitor ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.mangools.com/v3/v3/aiwatcher/monitor/string/prompts" \  -H "Content-Type: application/json" \  -d '{    "prompts": [      "string"    ]  }'
{
  "added_count": 0
}
Empty