Try the RankNibbler SEO API

Delete several maintenance windows Beta

DELETE /api/v1/maintenance?ids={ids}

ids is a comma list of window ids, up to 500.

Needs an X-API-Key header whose owner has permission to manage uptime monitors in the app. The call counts once against your daily quota. See Monitoring API: getting started for authentication, rate limits and errors.

200 · application/json
  1. {
  2. "deleted": ["mw_3f9a0c1d2e4b5a6c7d8e"],
  3. "notFound": ["mw_0a1b2c3d4e5f60718293"],
  4. "usage": { "used": 35, "dailyLimit": 100, "tier": "free" }
  5. }

Errors

StatusWhen
400No ids parameter.
401The API key is missing or invalid.
403The key's owner doesn't have permission to manage uptime monitors, or the key isn't linked to a workspace.
405The endpoint doesn't accept that method.
429A rate limit or your daily quota was hit. Read Retry-After, in seconds. Writes are also limited to 30 a minute per key.
500Something went wrong on our side. Try again.
503The API is temporarily unavailable. Try again shortly.

Errors are JSON: { "error": "message" }. See Monitoring API errors.

Related