Automotion docs

AUTH_TOKEN_EXPIRED

The verification or password-reset link has expired.

HTTP status: 400

What it means

The email-verification or password-reset link was valid but past its lifetime (verification links last 24 hours, reset links 1 hour).

Why it happens

  • Too much time passed between requesting the email and following the link.

How to fix it

  • Request a fresh link and use it promptly.

Example

Every non-2xx response uses the same envelope; path (when present) is the exact JSON path of the offending field, and requestId identifies the request in support conversations:

response.json
{
  "error": {
    "code": "AUTH_TOKEN_EXPIRED",
    "message": "This link has expired. Request a new one.",
    "docsUrl": "https://automotion.dev/docs/errors/auth_token_expired"
  },
  "requestId": "req_0123456789abcdef0123456789abcdef"
}

See the error index for the full catalog and the API overview for envelope semantics.

On this page