Speech Analytics API only returns first 500 chars of transcript

Calling GET /api/v2/analytics/conversations/voice/transcripts/{conversationId} with includeText=true. The JSON payload truncates the text field at 500 characters.

{
 "text": "Caller: Hello, I need help with my...",
 "segments": []
}

Is there a pagination token or flag to fetch the full string? The docs don’t mention a limit.

The API does truncate the text field at 500 chars. You’ll need to fetch the segments array instead. Each segment contains the actual speech text. Loop through them in your client app sdk code to reconstruct the full transcript. Just concatenate the segment text fields in order.