Removes the binding between the trigger and an agent
Unbinds the trigger from an agent so the agent no longer runs when the trigger fires. The call is idempotent: removing a binding that does not exist still succeeds with 204. Neither the trigger nor the agent is deleted.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The trigger identifier.
uuidThe agent identifier to unbind.
The tenant identifier
Response Body
curl -X DELETE "https://api.fruxon.com/v1/tenants/string/triggers/497f6eca-6276-4993-bfeb-53cbbbba6f08/bindings/string"{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Lists triggers in the tenant
Returns every trigger in the tenant with its current agent bindings. The two optional filters compose: `agentId` narrows to triggers bound to one agent, `integration` narrows to triggers sourced from one integration. The result is unpaged.
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.