Hello @carmines.digilabgrou that notice is legitimate, and it’s specific to workspace org_ZM6hm9TLOKq15OJJ. It’s generated by an automated weekly check that counts API-key-authenticated traffic to the legacy POST /v2/list-calls endpoint, which is being removed on 2026-06-15. Dashboard activity is excluded (those sessions use a different auth path and already call v3), so the 2,263 hits are coming from a backend integration in that workspace — a script, scheduled job, low-code tool (Zapier/Make/n8n), or a service pinned to an older Retell SDK version.
To migrate before the cutover:
Endpoint swap:POST https://api.retellai.com/v2/list-calls → POST ``https://api.retellai.com/v3/list-calls.
Response shape changed (this is the most common silent regression): v2 returned a bare array; v3 returns { items, pagination_key, has_more } (and total if you pass include_total: true). Any loop currently treating the response as an array will break pagination — update it to read items and traverse with pagination_key + has_more.
Fastest fix if you use our official SDKs: upgrade the Python or TypeScript SDK to the latest version — client.call.list(...) already targets v3 there.
If you’re not sure which integration is calling v2, the cleanest way to bisect is to rotate one API key at a time and watch next Monday’s notice — when the count drops to zero, that was the caller. The weekly notices will stop on their own once v2 traffic from the workspace ceases; no manual unsubscribe needed.