Discussions

Ask a Question
Back to all

Access Token Validity Reduced from 14 Days to 3 Days – Documentation Mismatch

Description:

According to the token exchange documentation, access tokens should be valid for 14 days (1,209,600 seconds). This was the behavior we observed previously.

However, we are now receiving access tokens with only 3 days validity (259,200 seconds).

Evidence from token payload:


{
  "exp": 1780297672,
  "iat": 1780038472
}

// exp - iat = 259200 seconds = 3 days

Questions:

  • Was there a recent change to token expiration policy?
  • Is this a documentation inconsistency, or is the 3-day limit now intentional?
  • If intentional, will the documentation be updated?

Please clarify so we can adjust our token refresh logic accordingly.