List wireless connectivity logs
GET/sim_cards/:id/wireless_connectivity_logs
This API allows listing a paginated collection of Wireless Connectivity Logs associated with a SIM Card, for troubleshooting purposes.
Request
Path Parameters
id uuidrequired
Identifies the SIM.
Query Parameters
page[number] integer
Possible values: >= 1
Default value: 1
The page number to load.
page[size] integer
Possible values: >= 1
and <= 250
Default value: 20
The size of the page.
Responses
200: Successful Response
- application/json
401: Unauthorized
default: Unexpected error
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/sim_cards/:id/wireless_connectivity_logs' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"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
}
}
{
"errors": [
{
"code": "string",
"title": "string",
"detail": "string",
"source": {
"pointer": "string",
"parameter": "string"
},
"meta": {}
}
]
}