Return a list of calls associated with your account. See the docs for more information
1
import { Twilio } from "twilio";
2
3
type Twilio = {
4
accountSid: string;
5
token: string;
6
};
7
8
export async function main(twilio: Twilio) {
9
const client = new Twilio(twilio.accountSid, twilio.token);
10
const calls = await client.calls.list();
11
return calls;
12
}
13
export async function main(twilio: Twilio): Promise<void> {
console.log(calls);