Legacy agent list endpoints are deprecated
Deprecation date: 07/31/2026 The following APIs are deprecated as of 07/31/2026. Migrate to the listed replacements. Affected APIs:GET /list-agentsGET /list-chat-agents
Endpoint migrations
GET /list-agents->POST /v2/list-agentsGET /list-chat-agents->POST /v2/list-agents
Migration details
- Update client calls to use
POST /v2/list-agents. - To list only voice agents, set
filter_criteria.channelto{ "op": "eq", "value": "voice" }. - To list only chat agents, set
filter_criteria.channelto{ "op": "eq", "value": "chat" }. - Read results from
itemsinstead of expecting a top-level array. - Continue pagination with the returned
pagination_keywhilehas_moreistrue. - Stop sending
pagination_key_version; the new endpoint does not use it. - Deprecation date: 07/31/2026.
channel filter to preserve the old voice-only or chat-only behavior, and update any array-based response handling to read from items.
