API ReferenceEvent Triggers
Disable an event
POST /events/{id}/disable
Disable an event
Disable an event.
https://api.edgecron.com/v1/events/{id}/disable
Authentication required
Send `X-Key-ID`, `X-Timestamp`, and `X-Signature` with every request. The signature is lowercase hex HMAC-SHA256 over `timestamp + "\n" + payload`.
Parameters
| Parameters | In | Type | Required | Description |
|---|---|---|---|---|
id | path | integer | Yes | Resource identifier. |
Request body
This endpoint does not require a JSON request body.
Response
All successful responses use the EdgeCron API envelope.
{
"code": 0,
"message": "success",
"request_id": "req_abc123",
"data": {
"id": 101,
"app_id": "app_123",
"event_name": "invoice.paid",
"event_key": "tenant-a",
"payload": {},
"status": "string",
"created_at": "2026-07-01T12:00:00Z"
}
}Schema
| Parameters | Type | Required | Description |
|---|---|---|---|
id | integer | No | Resource identifier. |
app_id | string | No | Application identifier. |
event_name | string | No | - |
event_key | string | No | - |
payload | object | No | JSON payload forwarded to the target endpoint. |
status | string | No | Current lifecycle state. |
created_at | string (date-time) | No | Creation timestamp. |