init.Tasks openapi.json inittasks.com

HTTP 422

account_too_large

HTTP 422 — Account too large

When you see it

The account holds more rows than the API will walk in one request (20,000 per table).

What to do

This is a ceiling on the account, not on your request. The user needs to delete or archive data; the apps keep working.

The response

Every error is RFC 9457 problem+json:

json
{
  "type": "https://devs.inittasks.com/errors/account_too_large",
  "title": "Account too large",
  "status": 422,
  "detail": "a sentence for a developer; never branch on it",
  "instance": "/todos/8E4F2A1B",
  "request_id": "3f9a1c7e-2b44-4d1e-9c30-5a7e8b2d1f60"
}

Branch on type, never on detail or on the HTTP status alone — several codes share a status.