0
List Message Media
One script reply has been approved by the moderators Verified

Return a list of media associated with your message. See the docs for more information

Created by elisaibm866 913 days ago Viewed 8987 times
0
Submitted by hugo697 Bun
Verified 423 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, messageSid: string) {
9
  const client = new Twilio(twilio.accountSid, twilio.token);
10
  const mediaList = await client.messages(messageSid).media.list();
11
  return mediaList;
12
}
13

Other submissions