Search + K

Command Palette

Search for a command to run...

Sign In

Create a Transcription

POST /2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Transcriptions.json
Copy endpoint
https://api.twilio.com

Create a Transcription

Parameters

path Path Parameters

Name Type
AccountSid required

The SID of the Account that created this Transcription resource.

`AC${string}`
CallSid required

The SID of the Call the Transcription resource is associated with.

`CA${string}`

Request Body

application/x-www-form-urlencoded
{
Name?: string;
Track?: RealtimeTranscriptionEnumTrack
type RealtimeTranscriptionEnumTrack = "inbound_track" | "outbound_track" | "both_tracks"
;
StatusCallbackUrl?: string;
StatusCallbackMethod?: "GET" | "POST";
InboundTrackLabel?: string;
OutboundTrackLabel?: string;
PartialResults?: boolean;
LanguageCode?: string;
TranscriptionEngine?: string;
ProfanityFilter?: boolean;
SpeechModel?: string;
Hints?: string;
EnableAutomaticPunctuation?: boolean;
IntelligenceService?: string;
}

Responses

200 application/json

OK

interface ApiV2010AccountCallRealtimeTranscription {
sid?: `GT${string}` | null;
account_sid?: `AC${string}` | null;
call_sid?: `CA${string}` | null;
name?: string | null;
status?: RealtimeTranscriptionEnumStatus

The status - one of stopped, in-flight

type RealtimeTranscriptionEnumStatus = "in-progress" | "stopped"
;
date_updated?: string | null;
uri?: string | null;
}