Skip to main content
GET
/
sim_cards
/
{id}
/
wireless_connectivity_logs
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const response = await client.simCards.listWirelessConnectivityLogs('6a09cdc3-8948-47f0-aa62-74ac943d6c58');

console.log(response.data);
{
  "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": {
    "page_number": 2,
    "page_size": 25,
    "total_pages": 3,
    "total_results": 55
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Identifies the SIM.

Example:

"6a09cdc3-8948-47f0-aa62-74ac943d6c58"

Query Parameters

page[number]
integer
default:1

The page number to load.

Required range: x >= 1
page[size]
integer
default:20

The size of the page.

Required range: 1 <= x <= 250

Response

Successful Response

data
WirelessConnectivityLog · object[]
meta
object