provider Agents Platform GET
/v1/convai/users @utdk/elevenlabs
/v1/convai/users Get Conversation Users
Get distinct users from conversations with pagination.
- agent_id query
- Agent id (agent_…) or speech engine external id (seng_), resolved to the same underlying resource.
- branch_id query
- Filter conversations by branch ID.
- call_start_before_unix query
- Unix timestamp (in seconds) to filter conversations up to this start date.
- call_start_after_unix query
- Unix timestamp (in seconds) to filter conversations after to this start date.
- search query
- Search/filter by user ID (exact match).
- page_size query
- How many users to return at maximum. Defaults to 30.
- integer
- sort_by query
- The field to sort the results by. Defaults to last_contact_unix_secs.
- enum: last_contact_unix_secs, conversation_count
- cursor query
- Used for fetching next page. Cursor is returned in the response.
- xi-api-key header
- Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.
Try it
Authentication
Configure credentials for ElevenLabs API Documentation
Code snippet
Updates live as you fill in the form above.
TypeScript
import elevenlabs from '@utdk/elevenlabs';
await elevenlabs.getConversationUsersRoute({
"page_size": 30
})