Skip to main content
DELETE
/
v1
/
topics
/
{id}
curl -X DELETE "https://api.trigify.io/v1/topics/topic_abc123xyz" \
  -H "x-api-key: YOUR_API_KEY"
{
  "message": "<string>",
  "success": true,
  "data": {
    "id": "<string>",
    "deleted": true
  }
}
Use this endpoint to soft-delete a Social Topics search and stop future monitoring for that topic definition.
Enterprise-only endpoint. Contact us at [email protected] to discuss access.
This endpoint is free. Credits are not charged for deleting a topic search.

Overview

Deleting a topic removes it from ongoing monitoring for your organisation. This is a soft delete at the API contract level: the endpoint confirms deletion and stops future activity for that topic search.

Authentication And Permissions

  • Send your API key in x-api-key
  • Required permission: topics:write
  • Required plan: ENTERPRISE or CUSTOM
curl -X DELETE "https://api.trigify.io/v1/topics/topic_abc123xyz" \
  -H "x-api-key: YOUR_API_KEY"

Example Response

{
  "success": true,
  "message": "Topic search deleted",
  "data": {
    "id": "topic_abc123xyz",
    "deleted": true
  }
}

Monitoring Impact

  • the topic is removed from the daily 06:00 UTC rediscovery cadence
  • no new create-time hydration or future rediscovery runs occur for that topic
  • linked posts stop receiving future Day 1, Day 3, and Day 5 backfills once no eligible active topic search still references them

Headers

x-api-key
string

Path Parameters

id
string
required

Topic search ID

Example:

"topic_abc123xyz"

Response

200 - application/json

Topic search deleted successfully

message
string
required
success
boolean
required
data
object
required