v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Private Wireless Gateways

Create a Private Wireless Gateway

Asynchronously create a Private Wireless Gateway for SIM cards for a previously created network. This operation may take several minutes so you can check the Private Wireless Gateway status at the section Get a Private Wireless Gateway.

post/private_wireless_gateways

Request body

namestring required

The private wireless gateway name.

network_idstring uuid required

The identification of the related network resource.

region_codestring

The code of the region where the private wireless gateway will be assigned. A list of available regions can be found at the regions endpoint

Example request

{
  "name": "My private wireless gateway",
  "network_id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
  "region_code": "dc2"
}

Response

Successful Response

Example response

{
  "data": {
    "assigned_resources": [
      {
        "count": 1,
        "record_type": "sim_card_group"
      }
    ],
    "created_at": "2018-02-02T22:25:27.521Z",
    "id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
    "ip_range": "100.64.1.0/24",
    "name": "My private wireless gateway",
    "network_id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
    "record_type": "private_wireless_gateway",
    "region_code": "dc2",
    "status": {
      "error_code": null,
      "error_description": null,
      "value": "provisioning"
    },
    "updated_at": "2018-02-02T22:25:27.521Z"
  }
}