Skip to main content
DELETE
/
v1
/
agent
/
:id
/
triggers
/
:triggerId
Delete Trigger
curl --request DELETE \
  --url https://api.app.shinzo.ai/v1/agent/:id/triggers/:triggerId \
  --header 'Authorization: Bearer <token>'

Authentication

Requires JWT token or Platform API key via Authorization: Bearer <token> header.

Path Parameters

id
string
required
Agent UUID
triggerId
string
required
Trigger UUID

Example Request

curl -X DELETE https://api.app.shinzo.ai/v1/agent/:id/triggers/:triggerId \
  -H "Authorization: Bearer <token>"

Response

{
  "message": "Trigger deleted successfully"
}
This action is permanent and cannot be undone. The webhook URL will immediately stop working, and any external systems sending webhooks to this URL will receive 404 errors.

Error Responses

404 Not Found

  • Agent not found, trigger not found, or you don’t have access

429 Too Many Requests

  • Rate limit exceeded

See Also