import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const bulkSimCardAction = await client.bulkSimCardActions.retrieve(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
);
console.log(bulkSimCardAction.data);
This API fetches information about a bulk SIM card action. A bulk SIM card action contains details about a collection of individual SIM card actions.
GET
/
bulk_sim_card_actions
/
{id}
JavaScript
Copy
Ask AI
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const bulkSimCardAction = await client.bulkSimCardActions.retrieve(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
);
console.log(bulkSimCardAction.data);