GET /system/network/adapters/wireless/primary
This configuration interface is for any ECLYPSE Wi-Fi Adapter connected to the HOST connector.
Used when you are operating a browser without access to the header parameter. This allows you to choose which encoding you want to use for the response:
All these resources can be used according what the resource allows.
If this parameter is not in the request, the Application/Json will be chosen by default.
There are multiple possible values (according the resource):
The first two are the most often used.
Object Name: WirelessAdapter
Property Name | Type | Description | Method |
---|---|---|---|
AccessPoint | Object | This object represents all the information about the device's access point Wi-Fi configuration. | GET POST |
Client | Object | This object represents all the information about the device's client Wi-Fi configuration. | GET POST |
Hotspot | Object | This object represents all the information about the device's hotspot Wi-Fi configuration. | GET POST |
Mesh | Object | This object represents all the information about the device's mesh Wi-Fi configuration. | GET POST |
Enabled | Boolean | This property is used to indicate if the controller’s wireless features are enabled or disabled. | GET POST |
Mode | String | This is the last wireless active mode. During a Post, this value is the mode that will be activated if the enabled property is set to true, otherwise the value will just be saved. The values available are :
|
GET POST |
URL Example: https://0.0.0.0/api/rest/v1/system/network/adapters/wireless/primary
{
"accessPoint": {
"href": "/api/rest/v1/system/network/adapters/wireless/primary/access-point",
"name": "accessPoint"
},
"enabled": false,
"client": {
"href": "/api/rest/v1/system/network/adapters/wireless/primary/client",
"name": "client"
},
"hotspot": {
"href": "/api/rest/v1/system/network/adapters/wireless/primary/hotspot",
"name": "hotspot"
},
"mesh": {
"href": "/api/rest/v1/system/network/adapters/wireless/primary/mesh",
"name": "mesh"
},
"mode": "Hotspot"
}
URL Example: https://0.0.0.0/api/rest/v1/system/network/adapters/wireless/primary
<?xml version="1.0" encoding="utf-8"?>
<Primary>
<Enabled>false</Enabled>
<Mode>Hotspot</Mode>
<AccessPoint>
<Href>
/api/rest/v1/system/network/adapters/wireless/primary/access-point
</Href>
<Name>accessPoint</Name>
</AccessPoint>
<Client>
<Href>
/api/rest/v1/system/network/adapters/wireless/primary/client
</Href>
<Name>client</Name>
</Client>
<Hotspot>
<Href>
/api/rest/v1/system/network/adapters/wireless/primary/hotspot
</Href>
<Name>hotspot</Name>
</Hotspot>
<Mesh>
<Href>
/api/rest/v1/system/network/adapters/wireless/primary/mesh
</Href>
<Name>mesh</Name>
</Mesh>
</Primary>