Skip to main content

Get all SIM cards

GET 
/sim_cards

Get all SIM cards belonging to the user that match the given filters.

Request

Query Parameters

    filter object

    Consolidated filter parameter for SIM cards (deepObject style). Originally: filter[tags], filter[iccid], filter[status]

    page object

    Consolidated pagination parameter (deepObject style). Originally: page[number], page[size]

    include_sim_card_group boolean

    It includes the associated SIM card group object in the response when present.

    filter[sim_card_group_id] uuid

    A valid SIM card group ID.

    sort string

    Possible values: [current_billing_period_consumed_data.amount]

    Sorts SIM cards by the given field. Defaults to ascending order unless field is prefixed with a minus sign.

    Example: -current_billing_period_consumed_data.amount

Responses

200: Successful response

401: Unauthorized

default: Unexpected error

Request samples


curl -L 'https://api.telnyx.com/v2/sim_cards' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"data": [
{
"id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"record_type": "sim_card",
"status": {
"value": "enabled",
"reason": "The SIM card is active, ready to connect to networks and consume data."
},
"type": "physical",
"iccid": "89310410106543789301",
"imsi": "081932214823362973",
"msisdn": "+13109976224",
"sim_card_group_id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"tags": [
"personal",
"customers",
"active-customers"
],
"data_limit": {
"amount": "2048.0",
"unit": "MB"
},
"current_billing_period_consumed_data": {
"amount": "2049.0",
"unit": "MB"
},
"actions_in_progress": true,
"created_at": "2018-02-02T22:25:27.521Z",
"updated_at": "2018-02-02T22:25:27.521Z"
}
],
"meta": {
"total_pages": 3,
"total_results": 55,
"page_number": 2,
"page_size": 25
}
}