Automotion docs

AUTH_TOKEN_INVALID

The verification or password-reset link is invalid or already used.

HTTP status: 400

What it means

The email-verification or password-reset link could not be matched to a pending token. Tokens are single-use: following a link consumes it.

Why it happens

  • The link was already used (tokens are single-use).
  • The link was truncated or altered in transit.
  • A newer link superseded this one.

How to fix it

  • Request a fresh link and follow the newest email.

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_INVALID",
    "message": "This link is invalid or has already been used. Request a new one.",
    "docsUrl": "https://automotion.dev/docs/errors/auth_token_invalid"
  },
  "requestId": "req_0123456789abcdef0123456789abcdef"
}

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

On this page