Search + K

Command Palette

Search for a command to run...

Sign In

Stop a Transcription using either the SID of the Transcription resource or the `name` used when creating the resource

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

Stop a Transcription using either the SID of the Transcription resource or the name used when creating the resource

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}`
Sid required

The SID of the Transcription resource, or the name used when creating the resource

string

Request Body

application/x-www-form-urlencoded
{ Status: RealtimeTranscriptionEnumUpdateStatus
type RealtimeTranscriptionEnumUpdateStatus = "stopped"
; }

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;
}