Get all SIM card orders
GET/wireless/sim_card_orders
Returns a list of all your sim card orders
Request
Query Parameters
page[number] number
Current page based on pagination settings.
page[size] number
Number of results to return per page based on pagination settings.
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' \
-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"
}
],
"metadata": {
"total_pages": 13,
"total_results": 13,
"page_number": 3,
"page_size": 1
}
}
{
"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"
}
]
}