API errors

Account is closing

403 · account_closing

Why you got this

This account is scheduled for deletion, so the API is closed to it. Reads are refused as well as writes.

What to do

The account owner can cancel the deletion from their account settings, which lifts this straight away. An integration cannot clear it from its own side.

How it arrives

Every failure on the API is an RFC 7807 problem document, sent asapplication/problem+json. Branch on type — or on its last segment, which is the code above — rather than ontitle or detail, which are prose and may be reworded.

{
  "type": "https://emailfig.com/docs/errors/account_closing",
  "title": "Account is closing",
  "status": 403
}

Every code

Back to the API reference