Get all SIM card groups
GET/wireless/sim_card_groups
Returns a list of all your sim card groups
Request
Query Parameters
include_sim_cards boolean
Specifies whether the SIM cards be included in the result payload.
include_billing_plans boolean
Specifies whether the billing plans be included in the result payload.
filter[sim_card_group_id] uuid
Filter SIM card groups to only the one that matches the provided ID.
filter[sim_card_group_name] string
Filter SIM card groups to only the ones that contains the provided search string.
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_groups' \
-H 'Accept: application/json'
Response samples
{
"data": [
{
"id": "string",
"data_allocation": "string",
"ingress_site_id": "string",
"egress_site_id": "string",
"created_at": "string",
"updated_at": "string"
}
],
"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"
}
]
}