Get SIM card
GET/wireless/sim_cards/:id
Returns the details regarding a specific SIM card.
Request
Path Parameters
id uuidrequired
The unique identifier of the SIM card
Responses
200: Successful response
- application/json
401: Authentication error
- application/json
403: Authorization error
- application/json
Request samples
curl -L 'https://api.telnyx.com/wireless/sim_cards/:id' \
-H 'Accept: application/json'
Response samples
{
"data": {
"enabled": true,
"iccid": "string",
"id": "string",
"sim_card_group": {
"id": "string",
"data_allocation": "string",
"ingress_site_id": "string",
"egress_site_id": "string",
"created_at": "string",
"updated_at": "string"
},
"tags": [
"string"
],
"updated_at": "string"
}
}
{
"errors": [
{
"code": "10001",
"title": "error title",
"detail": "additional detail about the error",
"pointer": "/pointer/to/field"
}
]
}
{
"errors": [
{
"code": "10001",
"title": "error title",
"detail": "additional detail about the error",
"pointer": "/pointer/to/field"
}
]
}