Deprecations
This page tracks deprecated features, endpoints, and breaking changes. We provide migration guides and timelines to help you transition smoothly.
Deprecated Endpoints
/api/v1/login → /api/v1/login_v2
| Detail | Value |
|---|---|
| Deprecated since | v1.2.0 (February 2025) |
| Removal date | June 2025 |
| Replacement | /api/v1/login_v2 |
The original /api/v1/login endpoint does not support the twoFASecret parameter for automatic 2FA resolution. Migrate to login_v2 to enable hands-free session management.
Migration:
- POST /api/v1/login
+ POST /api/v1/login_v2
{
"email": "user@example.com",
"password": "password123",
+ "twoFASecret": "YOUR_AUTHENTICATOR_SECRET",
"proxy": { "location": "US" }
}
info
No features are currently scheduled for immediate removal. We recommend migrating away from deprecated endpoints at your earliest convenience.