Fetch the complete transcript for a session
GET/accounts/{account_id}/realtime/kit/{app_id}/sessions/{session_id}/transcript
Returns a URL to download the transcript for the session ID in CSV format.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Path Parameters
Fetch the complete transcript for a session
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/sessions/$SESSION_ID/transcript \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"data": {
"sessionId": "sessionId",
"transcript_download_url": "transcript_download_url",
"transcript_download_url_expiry": "transcript_download_url_expiry"
},
"success": true
}Returns Examples
{
"data": {
"sessionId": "sessionId",
"transcript_download_url": "transcript_download_url",
"transcript_download_url_expiry": "transcript_download_url_expiry"
},
"success": true
}