API errors

Confirmation email cannot be sent

422 · confirmation_unavailable

Why you got this

This list asks new members to confirm by email, and the account's from address is not on a verified sending domain, so that email cannot go out.

What to do

The account owner needs to verify a sending domain in Settings and set a from address on it. Until then, use a list that does not ask for confirmation, or pass this on to the owner. Safe to retry once it is done.

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/confirmation_unavailable",
  "title": "Confirmation email cannot be sent",
  "status": 422
}

Every code

Back to the API reference