Delete Trigger
curl --request DELETE \
--url https://api.app.shinzo.ai/v1/agent/:id/triggers/:triggerId \
--header 'Authorization: Bearer <token>'Agent Schedules & Triggers
Delete Trigger
Delete a webhook trigger
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 viaAuthorization: Bearer <token> header.
Path Parameters
string
required
Agent UUID
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

