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 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 | string |
Request Body
application/x-www-form-urlencoded
{ Status: RealtimeTranscriptionEnumUpdateStatus ; }
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 ;
date_updated?: string | null;
uri?: string | null;
}
sid?: `GT${string}` | null;
account_sid?: `AC${string}` | null;
call_sid?: `CA${string}` | null;
name?: string | null;
status?:
date_updated?: string | null;
uri?: string | null;
}