PATCH
/v1/notifications/rules/{rule_id}Update a notification rule
Updates rule thresholds, channel targets, or enabled state.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
rule_id | string | Yes | Notification rule identifier. |
Request body schema
{
"condition": "object",
"channels": [
"string"
],
"enabled": "boolean"
}Response schema · 200
{
"id": "rule_123",
"enabled": true
}Response example
{
"id": "rule_123",
"enabled": true
}Code examples
curl https://api.tracklayer.com/v1/notifications/rules/rule_123 \
-X PATCH \
-H "Authorization: Bearer ${API_KEY}" \
-H "Content-Type: application/json" \
-d '{"event_name":"purchase","user_id":"u_123","properties":{"order_id":"100045","value":129}}'Try it out
Use the dashboard to create an API key, then run one of the examples above with TRACKLAYER_API_KEY set in your environment.