Check out our upcoming events and meetups! View events →
This API allows listing a paginated collection of Wireless Connectivity Logs associated with a SIM Card, for troubleshooting purposes.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const simCardListWirelessConnectivityLogsResponse of client.simCards.listWirelessConnectivityLogs(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
)) {
console.log(simCardListWirelessConnectivityLogsResponse.id);
}{
"data": [
{
"record_type": "wireless_connectivity_log",
"id": 137509451,
"sim_card_id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"log_type": "registration",
"imsi": "081932214823362973",
"imei": "490154203237518",
"mobile_country_code": "310",
"mobile_network_code": "410",
"start_time": "2018-02-02T22:25:27.521Z",
"stop_time": "2018-02-02T22:25:27.521Z",
"created_at": "2018-02-02T22:25:27.521Z",
"last_seen": "2018-02-02T22:25:27.521Z",
"apn": "data00.telnyx",
"ipv4": "192.168.0.0",
"ipv6": "2001:cdba:0000:0000:0000:0000:3257:9652",
"radio_access_technology": "LTE",
"state": "provisioned",
"cell_id": "311210-6813"
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Identifies the SIM.
"6a09cdc3-8948-47f0-aa62-74ac943d6c58"
The page number to load.
x >= 1The size of the page.
1 <= x <= 250Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const simCardListWirelessConnectivityLogsResponse of client.simCards.listWirelessConnectivityLogs(
'6a09cdc3-8948-47f0-aa62-74ac943d6c58',
)) {
console.log(simCardListWirelessConnectivityLogsResponse.id);
}{
"data": [
{
"record_type": "wireless_connectivity_log",
"id": 137509451,
"sim_card_id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"log_type": "registration",
"imsi": "081932214823362973",
"imei": "490154203237518",
"mobile_country_code": "310",
"mobile_network_code": "410",
"start_time": "2018-02-02T22:25:27.521Z",
"stop_time": "2018-02-02T22:25:27.521Z",
"created_at": "2018-02-02T22:25:27.521Z",
"last_seen": "2018-02-02T22:25:27.521Z",
"apn": "data00.telnyx",
"ipv4": "192.168.0.0",
"ipv6": "2001:cdba:0000:0000:0000:0000:3257:9652",
"radio_access_technology": "LTE",
"state": "provisioned",
"cell_id": "311210-6813"
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}