Mangools/API

Delete prompts

Delete one or more monitoring prompts across monitors in a single bulk call.

Request body:

  • prompt_ids — non-empty array of prompt IDs to delete

Remaining prompts on the affected monitors continue collecting responses on the next scheduled run. The response returns deleted_count.

DELETE
/v3/aiwatcher/prompts

Authorization

ApiKeyAuth
x-access-token<token>

Your Mangools API key

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

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