Alerts / Pause

Pause or resume one alert channel. Set paused to true to stop delivery, or false to resume.

Endpoint

Method POST
Url https://downdar.com/api/v1/alerts/pause

Request

Key fields

channel_key key Alert channel key ({type}:{guid}).
paused key true to pause, false to resume.
{ "channel_key": "discord:550e8400-e29b-41d4-a716-446655440000", "paused": true }

Response

Top level

ok Always true on success.
alert_channel Pause result. Fields below apply to alert_channel.
capacity Alert channel quota for the account.
rate_limit Rate limit state for the tier this endpoint consumes. Present on every successful response.

alert_channel

channel_key Alert channel key.
channel_type Channel type.
paused Echoes the requested pause state.

capacity

limit Maximum alert channels allowed on your plan.
used Alert channels currently in use.
remaining Alert channels you can still create.

rate_limit

tier Rate tier this endpoint counts against (1-5).
cost Units consumed by this request against the tier window.
timeframe Rolling limit window: second, minute, hour, or day.
limit Maximum units allowed in the timeframe for this tier on your plan.
used Units already used in the current window.
remaining Units left before this tier returns HTTP 429.
{ "ok": true, "alert_channel": { "channel_key": "discord:550e8400-e29b-41d4-a716-446655440000", "guid": "550e8400-e29b-41d4-a716-446655440000", "channel_type": "discord", "paused": true }, "capacity": { "limit": 10, "used": 1, "remaining": 9 }, "rate_limit": { "tier": 1, "cost": 1, "timeframe": "minute", "limit": 60, "used": 12, "remaining": 48 } }