Deletes a trigger and all its bindings.
Permanently removes the trigger along with every agent binding attached to it. The bound agents themselves are not deleted. Returns 404 when the trigger does not exist.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The trigger identifier.
uuidThe tenant identifier
Response Body
curl -X DELETE "https://api.fruxon.com/v1/tenants/string/triggers/497f6eca-6276-4993-bfeb-53cbbbba6f08"{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Adds (or returns the existing) binding between the trigger and an agent.
Binds the trigger to an agent so the agent runs whenever the trigger fires. The call is idempotent: an existing binding is returned unchanged rather than duplicated. Returns 404 when the trigger does not exist.
Test-fires the trigger immediately against every bound agent's current revision.
Fires the trigger on demand, bypassing its schedule or inbound event. Every bound agent is run against its current revision, exactly as a real firing would. Use it to verify a trigger's wiring without waiting for the next scheduled window. Returns 404 when the trigger does not exist. Phase 10f — when the request body carries a `samplePayload`, the dictionary nests under `Body["payload"]` exactly like an inbound message from `IntegrationConfigMessageReceiver`. Lets operators validate the full mapping → agent-enqueue pipeline before any provider-side webhook wiring is in place. Only valid for IntegrationEvent triggers; Schedule fires reject the field with 400.