---
title: "List SIM card actions"
method: GET
path: "/sim_card_actions"
tags: ["SIM Card Actions"]
---

# List SIM card actions

`GET /sim_card_actions`

This API lists a paginated collection of SIM card actions. It enables exploring a collection of existing asynchronous operations using specific filters.

## Query parameters

- `filter` object
  - `sim_card_id` string, uuid — A valid SIM card ID.
  - `status` 'in-progress' | 'completed' | 'failed' — Filter by a specific status of the resource's lifecycle.
  - `bulk_sim_card_action_id` string, uuid — Filter by a bulk SIM card action ID.
  - `action_type` 'enable' | 'enable_standby_sim_card' | 'disable' | 'set_standby' | 'remove_public_ip' | 'set_public_ip' — Filter by action type.
- `page` object
  - `number` integer — The page number to load.
  - `size` integer — The size of the page.

## Response `200`

Successful Response

- object
  - `data` WirelessSIMCardAction[]
    - `id` string, uuid — Identifies the resource.
    - `record_type` string
    - `sim_card_id` string, uuid — The related SIM card identifier.
    - `action_type` 'enable' | 'enable_standby_sim_card' | 'disable' | 'set_standby' — The operation type. It can be one of the following: <br/> <ul> <li><code>enable</code> - move the SIM card to the <code>enabled</code> status</li> <li><code>enable_standby_sim_card</code> - move a SIM card previously on the <code>standby</code> status to the <code>enabled</code> status after it consumes data.</li> <li><code>disable</code> - move the SIM card to the <code>disabled</code> status</li> <li><code>set_standby</code> - move the SIM card to the <code>standby</code> status</li> </ul>
    - `status` object
      - `value` 'in-progress' | 'completed' | 'failed' | 'interrupted' — The current status of the SIM card action.
      - `reason` string — It describes why the SIM card action is in the current status. This will be <code>null</code> for self-explanatory statuses, such as <code>in-progress</code> and <code>completed</code> but will include further information on statuses like <code>interrupted</code> and <code>failed</code>.
    - `settings` object, nullable — A JSON object representation of the action params.
    - `created_at` string — ISO 8601 formatted date-time indicating when the resource was created.
    - `updated_at` string — ISO 8601 formatted date-time indicating when the resource was updated.
  - `meta` PaginationMeta
    - `total_pages` integer
    - `total_results` integer
    - `page_number` integer
    - `page_size` integer

## Other responses

- `401` — Unauthorized
- `default` — Unexpected error

---

[API](https://skmtc.net/team-telnyx/apis/telnyx-api-2.md) · [All operations](https://skmtc.net/team-telnyx/apis/telnyx-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/team-telnyx/telnyx-api-2/versions/8f5f4e537994/schema)
