Choosing the Right API Version
Quick Decision#
| Situation | Use |
|---|
| New integration or application | V3 |
| AI Voice Agents | V3 (V2 unavailable) |
| Existing V2 integration | V2 until migrated |
| Maintaining legacy code | V2 while planning migration |
Base URL: https://platform-api.convirza.com/v3OAuth: https://platform-oauth.convirza.comV3 is actively developed and the default choice for all new integrations.Separate OAuth service with JSON-based authentication
7-day access tokens, 6-month refresh tokens, immediate revocation
Full feature set: AI Voice Agents, SMS Broadcasts, Phone Numbers, Webhooks, Call Flow Recording
Consistent JSON responses with standardized error handling
Base URL: https://apicfa.convirza.com/v2OAuth: https://apicfa.convirza.com/oauth/tokenV2 is in maintenance mode — bug fixes only, no new features.Form-encoded authentication (application/x-www-form-urlencoded)
1-hour access tokens, 30-day refresh tokens
No AI Voice Agents or SMS Broadcasts
Still functional for existing integrations
Migrating V2 to V3#
Feature Mapping#
| V2 Capability | V3 Equivalent |
|---|
| Call data retrieval | GET /v3/conversations/calls |
| SMS conversations | GET /v3/conversations/sms |
| User management | GET /v3/users, POST /v3/users |
| Webhooks | GET /v3/webhooks, POST /v3/webhooks |
| Campaign data | GET /v3/sms-broadcasts |
URL Changes#
| Service | V2 | V3 |
|---|
| OAuth | https://apicfa.convirza.com | https://platform-oauth.convirza.com |
| API | https://apicfa.convirza.com/v2 | https://platform-api.convirza.com/v3 |
Migration Steps#
1.
Build V3 in parallel — don't touch your existing V2 integration
2.
Update auth — switch from form-encoded to JSON, update token handling for new TTLs
3.
Update base URLs — point to V3 endpoints
4.
Test thoroughly — validate all flows end-to-end
5.
Cut over — deprecate V2 once V3 is confirmed working
Do not expand your V2 footprint — even if full migration isn't immediate, avoid adding new V2 dependencies.Need Help?#
Contact support@convirza.com for help identifying V3 equivalents for your V2 endpoints or planning your migration.Modified at 2026-04-03 13:55:46