Blocklist Types
| Type | Blocks By | Example Value | Use Case |
|---|---|---|---|
| country | ISO country code | US, CN, RU | Geo-fencing — keep devices in allowed regions |
| mcc | Mobile Country Code | 310 (US), 234 (UK) | Block all carriers in a country |
| plmn | MCC + MNC pair | 31026 (T-Mobile US) | Block a specific carrier |
GET /wireless_blocklist_values to retrieve all valid values for a given type.
How It Works
- Create a blocklist —
POST /wireless_blocklistswith aname,type, andvaluesarray. - Assign to a SIM Card Group — Set
wireless_blocklist_idon the group viaPATCH /sim_card_groups/{id}. - All SIMs in that group are now blocked from the listed networks.
Common Patterns
Geo-fencing: Create acountry blocklist with countries where your devices shouldn’t operate. Useful for compliance, cost control, or preventing stolen device use.
Carrier avoidance: Create a plmn blocklist to steer SIMs away from expensive or unreliable carriers in a region. The SIM’s multi-IMSI applet will select the next best available network.
Security lockdown: Block all networks except your target deployment region. Combined with Private Wireless Gateways, this creates a fully controlled connectivity path.