← All breaking-change reports

Cloudflare API breaking change: path-removed on /accounts/{account_id}/cloudforce-one/events/queries/alerts/{alert_id}

cloudflare · breaking · 2026-07-27 · source: OpenAPI spec diff

What changed

According to the OpenAPI spec diff (cloudflare/cloudflare-oas-7abe88500e55-to-c92b9b0fde23-removals), the following surface changed:

path-removed: /accounts/{account_id}/cloudforce-one/events/queries/alerts/{alert_id}

cloudflare OAS corridor pair 7abe88500e55 -> c92b9b0fde23 (client-breaking removals subset ingested 2026-08-01)

Who is affected

Mechanical URL rewrite at every call site: requests hitting '/accounts/{account_id}/cloudforce-one/events/queries/alerts/{alert_id}' (delete, get, patch, post) move to '/accounts/{account_id}/cloudforce-one/events/queries/{query_id}'.

To find out whether your repo is hit — file and line number, no code leaving your machine:

npx mendapi scan --repo .

How to fix it

Migration path:

Mechanical URL rewrite at every call site: requests hitting '/accounts/{account_id}/cloudforce-one/events/queries/alerts/{alert_id}' (delete, get, patch, post) move to '/accounts/{account_id}/cloudforce-one/events/queries/{query_id}'. Update raw URL builders, route constants and API client wrappers accordingly. The alerts sub-resource family is gone from NEW entirely; the generic per-query routes are the surviving surface and the alert_id identifier space no longer exists.

Before:

await cf.request('/accounts/{account_id}/cloudforce-one/events/queries/alerts/{alert_id}');

After:

await cf.request('/accounts/{account_id}/cloudforce-one/events/queries/{query_id}');

Replacement data source: the successor route /accounts/{account_id}/cloudforce-one/events/queries/{query_id} in the NEW spec

With your own LLM key configured (BYO compute — mendapi never proxies your credentials), npx mendapi llmfix turns this guide into a reviewable draft patch for your repo.

Detected and tracked by mendapi — Dependabot for every API you depend on. Scans run locally; your code never leaves your machine.

Related

Change data is recorded from upstream provider releases, changelogs and OpenAPI spec diffs; every article names its source.