Get SIM card order
GET/wireless/sim_card_orders/:id
Returns the details regarding a specific SIM card.
Request
Path Parameters
id uuidrequired
The unique identifier of the SIM card order
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_card_orders/:id' \
-H 'Accept: application/json'
Response samples
{
"data": {
"id": "string",
"quantity": 0,
"shipping_address": {
"street_line_1": "string",
"street_line_2": "string",
"locality": "string",
"administrative_area": "string",
"postal_code": "string",
"extended_address": "string",
"country_code": "string"
},
"sim_group_id": "string",
"data_plan_id": "string",
"delivery_service": "string",
"tracking_number": "string",
"created_at": "string",
"updated_at": "string",
"order_status": "pending"
}
}
{
"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"
}
]
}