0

Delete Message

by
Published Oct 24, 2023

Delete a message record from your account. [See the docs](https://www.twilio.com/docs/sms/api/message-resource#delete-a-message-resource) for more information

Script twilio Verified

The script

Submitted by hugo697 Bun
Verified 398 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, messageId: string): Promise<void> {
9
  const client = new Twilio(twilio.accountSid, twilio.token);
10
  await client.messages(messageId).remove();
11
}
12