import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const simCardOrder = await client.simCardOrders.create({
address_id: '1293384261075731499',
quantity: 23,
});
console.log(simCardOrder.data);
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const simCardOrder = await client.simCardOrders.create({
address_id: '1293384261075731499',
quantity: 23,
});
console.log(simCardOrder.data);