POST
/
v1
/
wifi-networks
Create a Wi-Fi Network
curl --request POST \
  --url https://managexrapi.com/v1/wifi-networks \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ssid": "AcmeCorpSecure",
  "nickname": "Office WiFi",
  "type": "WPA",
  "password": "password",
  "hidden": false
}'
{
  "data": {
    "id": "wifi_abc123",
    "ssid": "MyNetwork",
    "nickname": "Office Wi-Fi",
    "type": "WPA_ENTERPRISE"
  }
}

Authorizations

Authorization
string
header
required

API key based authentication where <encoded-value> is the Base64 encoding of API_KEY_ID:API_KEY_SECRET

  • Username: The API Key ID.
  • Password: The API Key Secret.

Query Parameters

organizationId
string

Unique identifier of the organization.
Defaults to the organization associated with the API key.

Body

application/json

Wi-Fi network credentials and information

Response

200
application/json

The created wi-fi network

The response is of type object.