Changes the status of the recording to paused, stopped, or in-progress. Note: Pass `Twilio.CURRENT` instead of recording sid to reference current active recording.
POST
/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Recordings/{Sid}.json https://api.twilio.com
Changes the status of the recording to paused, stopped, or in-progress. Note: Pass Twilio.CURRENT instead of recording sid to reference current active recording.
Parameters
path Path Parameters
Request Body
application/x-www-form-urlencoded
{ Status: CallRecordingEnumStatus ;PauseBehavior?: string; }
Responses
200 application/json
OK
interface ApiV2010AccountCallCallRecording {
account_sid?: `AC${string}` | null;
api_version?: string | null;
call_sid?: `CA${string}` | null;
conference_sid?: `CF${string}` | null;
date_created?: string | null;
date_updated?: string | null;
start_time?: string | null;
duration?: string | null;
sid?: `RE${string}` | null;
price?: number | null;
uri?: string | null;
encryption_details?: null;
price_unit?: string | null;
status?:CallRecordingEnumStatus ;
channels?: number;
source?:CallRecordingEnumSource ;
error_code?: number | null;
track?: string | null;
}
account_sid?: `AC${string}` | null;
api_version?: string | null;
call_sid?: `CA${string}` | null;
conference_sid?: `CF${string}` | null;
date_created?: string | null;
date_updated?: string | null;
start_time?: string | null;
duration?: string | null;
sid?: `RE${string}` | null;
price?: number | null;
uri?: string | null;
encryption_details?: null;
price_unit?: string | null;
status?:
channels?: number;
source?:
error_code?: number | null;
track?: string | null;
}