# Login verification response object The Login verification response object represents the response returned when email verification is successfully completed, providing JWT tokens for authenticated access. ## Properties **`refresh_token`** string required JWT refresh token for obtaining new access tokens. Store securely for token renewal. Also available as `refreshToken` (camelCase alias). **`token`** string required JWT access token for authenticated API requests. Use this token in the `Authorization: Bearer` header. **`token_type`** string required Type of token provided. Always `"bearer"`. **`expires_in`** integer required Number of seconds until the access token expires. Typically 3600 (1 hour). **`device_id`** string | null optional Device identifier associated with the session. Used for security tracking. **`user`** object required Basic user information for the authenticated account. **`id`** string required Unique user identifier with `usr_` prefix. **`email`** string required User's email address. **`verified`** boolean required Whether the user's email is verified.