Skip to main content
DELETE
/
trigger
/
triggers
/
{trigger_type}
/
{topic}
Delete a trigger
curl --request DELETE \
  --url https://api.quiva.ai/trigger/triggers/{trigger_type}/{topic} \
  --header 'Authorization: Bearer <token>'
{
  "status_code": 200
}

Authorizations

Authorization
string
header
required

JWT token for authentication. Required for all API operations to verify identity and access permissions.

Path Parameters

trigger_type
enum<string>
required

The type of trigger (gateway, stream, subject)

Available options:
gateway,
stream,
subject
topic
string
required

The unique topic identifier of the trigger (without the prefix)

Response

Successfully deleted trigger

status_code
integer

HTTP status code indicating success

Example:

200