0
Delete Call
One script reply has been approved by the moderators Verified

Remove a call record from your account. See the docs for more information

Created by hugo697 408 days ago Viewed 8970 times
0
Submitted by hugo697 Bun
Verified 408 days ago
1
import { Twilio } from "twilio";
2

3
type Twilio = {
4
  accountSid: string;
5
  token: string;
6
};
7

8
export async function main(twilio: Twilio, callSid: string): Promise<void> {
9
  const client = new Twilio(twilio.accountSid, twilio.token);
10
  await client.calls(callSid).remove();
11
}
12